diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2023-01-29 18:52:58 +0100 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2023-02-26 10:26:16 +0100 |
commit | baf9e0a33685eea208132f374df6756dc2aaf89c (patch) | |
tree | 273fbb8f7d9416aca6bccfa183bb925b9ca77cea /gnu | |
parent | dc3e22f4d5d7aa94fef9e380a3d2c0d71143ced9 (diff) | |
download | guix-baf9e0a33685eea208132f374df6756dc2aaf89c.tar.gz guix-baf9e0a33685eea208132f374df6756dc2aaf89c.zip |
gnu: ngless: Drop Haskell libraries and documentation.
* gnu/packages/bioinformatics.scm (ngless)[arguments]: Add
'remove-libraries phase and disable #:haddock?.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 2b20191bb3..9e8f7e92f8 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -14832,7 +14832,8 @@ datasets.") "0pljyrlpr9r3cl5311dhgxdl8y40szyi4vprn34i3piy0qrldymi")))) (build-system haskell-build-system) (arguments - `(#:phases + `(#:haddock? #f + #:phases (modify-phases %standard-phases (add-before 'configure 'update-constraints (lambda _ @@ -14876,7 +14877,10 @@ datasets.") (add-after 'wrap-program 'check-install (lambda* (#:key outputs #:allow-other-keys) (let* ((ngless (string-append (assoc-ref outputs "out") "/bin/ngless"))) - (invoke ngless "--check-install"))))))) + (invoke ngless "--check-install")))) + (add-after 'register 'remove-libraries + (lambda* (#:key outputs #:allow-other-keys) + (delete-file-recursively (string-append (assoc-ref outputs "out") "/lib"))))))) (inputs (list prodigal bwa samtools |