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)
|
||||
(install-file "shellcheck.1"
|
||||
(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
|
||||
(list pandoc))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue