diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-02-24 19:42:36 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-03-04 17:54:40 +0100 |
commit | bbce53c4b3a6576c5a13db39d558331dc0eabd29 (patch) | |
tree | ee452f440042710623dbd7b21ec28f37af8ffd40 /gnu | |
parent | 8293d21c660a8c210a0fb3fd431e3dc7053f2326 (diff) | |
download | patches-bbce53c4b3a6576c5a13db39d558331dc0eabd29.tar patches-bbce53c4b3a6576c5a13db39d558331dc0eabd29.tar.gz |
gnu: Add boost@1.66.0.
* gnu/packages/boost.scm (boost-1.66): New public variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/boost.scm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm index 91dd2f9156..f4ba82810a 100644 --- a/gnu/packages/boost.scm +++ b/gnu/packages/boost.scm @@ -110,6 +110,20 @@ across a broad spectrum of applications.") (license (license:x11-style "http://www.boost.org/LICENSE_1_0.txt" "Some components have other similar licences.")))) +(define-public boost-1.66 + (package + (inherit boost) + (version "1.66.0") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://sourceforge/boost/boost/" version "/boost_" + (string-map (lambda (x) (if (eq? x #\.) #\_ x)) version) + ".tar.bz2")) + (sha256 + (base32 + "1aaw48cmimsskzgiclwn0iifp62a5iw9cbqrhfari876af1828ap")))))) + (define-public mdds (package (name "mdds") |