diff options
author | Efraim Flashner | 2019-11-25 09:37:11 +0200 |
---|---|---|
committer | Efraim Flashner | 2019-11-25 12:35:42 +0200 |
commit | 71ddd205663459fcb93dceca7cde8a1a8eede157 (patch) | |
tree | 305e0543b4719ad75bf831a8e4830c191fcab25d /gn | |
parent | 671040f0b8646d2b55c55a9dc062c1e26d2caf46 (diff) | |
download | guix-bioinformatics-71ddd205663459fcb93dceca7cde8a1a8eede157.tar.gz |
gn: boost-static: Upstreamed.
* gn/packages/boost.scm (boost-static): Remove variable.
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/bioinformatics.scm | 1 | ||||
-rw-r--r-- | gn/packages/boost.scm | 21 |
2 files changed, 0 insertions, 22 deletions
diff --git a/gn/packages/bioinformatics.scm b/gn/packages/bioinformatics.scm index c107c83..9b22921 100644 --- a/gn/packages/bioinformatics.scm +++ b/gn/packages/bioinformatics.scm @@ -15,7 +15,6 @@ #:use-module (guix build-system waf) #:use-module (gnu packages) #:use-module (gnu packages bioinformatics) - #:use-module (gn packages boost) #:use-module (gnu packages boost) #:use-module (gnu packages check) #:use-module (gnu packages compression) diff --git a/gn/packages/boost.scm b/gn/packages/boost.scm deleted file mode 100644 index 8ef631b..0000000 --- a/gn/packages/boost.scm +++ /dev/null @@ -1,21 +0,0 @@ -(define-module (gn packages boost) - #:use-module (guix utils) - #:use-module (guix packages) - #:use-module (gnu packages boost)) - -(define-public boost-static - (package - (inherit boost) - (name "boost-static") - (arguments - (substitute-keyword-arguments (package-arguments boost) - ((#:make-flags flags) - `(cons "link=static" (delete "link=shared" ,flags))) - ((#:phases phases) - `(modify-phases ,phases - (replace 'provide-libboost_python - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (with-directory-excursion (string-append out "/lib") - (symlink "libboost_python27.a" "libboost_python.a")) - #t))))))))) |