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)
|
(mkdir-p datadir)
|
||||||
(invoke "touch" (string-append datadir "index.db"))
|
(invoke "touch" (string-append datadir "index.db"))
|
||||||
(setenv "HOME" home))
|
(setenv "HOME" home))
|
||||||
(invoke "./bootstrap")
|
(invoke "./bootstrap")))
|
||||||
#t))
|
|
||||||
(add-after 'install 'wrap-executables
|
(add-after 'install 'wrap-executables
|
||||||
(lambda* (#:key outputs inputs #:allow-other-keys)
|
(lambda* (#:key outputs inputs #:allow-other-keys)
|
||||||
(let ((out (assoc-ref outputs "out"))
|
(let ((out (assoc-ref outputs "out"))
|
||||||
(curl (assoc-ref inputs "curl")))
|
(curl (assoc-ref inputs "curl")))
|
||||||
(wrap-program (string-append out "/bin/akku")
|
(wrap-program (string-append out "/bin/akku")
|
||||||
`("LD_LIBRARY_PATH" ":" prefix (,(string-append curl "/lib"))))
|
`("LD_LIBRARY_PATH" ":" prefix
|
||||||
#t))))))
|
(,(string-append curl "/lib"))))))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list which autoconf automake pkg-config))
|
(list which autoconf automake pkg-config))
|
||||||
(inputs
|
(inputs
|
||||||
(list guile-3.0 curl))
|
(list bash-minimal guile-3.0 curl))
|
||||||
(home-page "https://akkuscm.org/")
|
(home-page "https://akkuscm.org/")
|
||||||
(synopsis "Language package manager for Scheme")
|
(synopsis "Language package manager for Scheme")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue