mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-03 08:36:32 +01:00
gnu: shellcheck: Drop Haskell libraries.
* gnu/packages/haskell-apps.scm (shellcheck)[arguments]: Add 'remove-libraries phase.
This commit is contained in:
parent
be398aa2b4
commit
a38901c01e
1 changed files with 4 additions and 1 deletions
|
@ -836,7 +836,10 @@ (define-public shellcheck
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(install-file "shellcheck.1"
|
(install-file "shellcheck.1"
|
||||||
(string-append (assoc-ref outputs "out")
|
(string-append (assoc-ref outputs "out")
|
||||||
"/share/man/man1/")))))))
|
"/share/man/man1/"))))
|
||||||
|
(add-after 'register 'remove-libraries
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(delete-file-recursively (string-append (assoc-ref outputs "out") "/lib")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pandoc))
|
(list pandoc))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Loading…
Reference in a new issue