mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: akku: Add bash-minimal to inputs.
* gnu/packages/package-management.scm (akku): Delete trailing #t. [inputs]: Add bash-minimal. Change-Id: Ifc5c7da3575b39ab43a47fee951ed49fac2bba93
This commit is contained in:
parent
7301bb217a
commit
bdb2e60103
1 changed files with 4 additions and 5 deletions
|
@ -2251,19 +2251,18 @@ (define-public akku
|
|||
(mkdir-p datadir)
|
||||
(invoke "touch" (string-append datadir "index.db"))
|
||||
(setenv "HOME" home))
|
||||
(invoke "./bootstrap")
|
||||
#t))
|
||||
(invoke "./bootstrap")))
|
||||
(add-after 'install 'wrap-executables
|
||||
(lambda* (#:key outputs inputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out"))
|
||||
(curl (assoc-ref inputs "curl")))
|
||||
(wrap-program (string-append out "/bin/akku")
|
||||
`("LD_LIBRARY_PATH" ":" prefix (,(string-append curl "/lib"))))
|
||||
#t))))))
|
||||
`("LD_LIBRARY_PATH" ":" prefix
|
||||
(,(string-append curl "/lib"))))))))))
|
||||
(native-inputs
|
||||
(list which autoconf automake pkg-config))
|
||||
(inputs
|
||||
(list guile-3.0 curl))
|
||||
(list bash-minimal guile-3.0 curl))
|
||||
(home-page "https://akkuscm.org/")
|
||||
(synopsis "Language package manager for Scheme")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue