gnu: ngless: Drop Haskell libraries and documentation.
* gnu/packages/bioinformatics.scm (ngless)[arguments]: Add 'remove-libraries phase and disable #:haddock?.
This commit is contained in:
parent
dc3e22f4d5
commit
baf9e0a336
1 changed files with 6 additions and 2 deletions
|
@ -14832,7 +14832,8 @@ datasets.")
|
||||||
"0pljyrlpr9r3cl5311dhgxdl8y40szyi4vprn34i3piy0qrldymi"))))
|
"0pljyrlpr9r3cl5311dhgxdl8y40szyi4vprn34i3piy0qrldymi"))))
|
||||||
(build-system haskell-build-system)
|
(build-system haskell-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:haddock? #f
|
||||||
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-before 'configure 'update-constraints
|
(add-before 'configure 'update-constraints
|
||||||
(lambda _
|
(lambda _
|
||||||
|
@ -14876,7 +14877,10 @@ datasets.")
|
||||||
(add-after 'wrap-program 'check-install
|
(add-after 'wrap-program 'check-install
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((ngless (string-append (assoc-ref outputs "out") "/bin/ngless")))
|
(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
|
(inputs (list prodigal
|
||||||
bwa
|
bwa
|
||||||
samtools
|
samtools
|
||||||
|
|
Reference in a new issue