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:
Maxim Cournoyer 2023-10-20 10:13:02 -04:00 committed by Ludovic Courtès
parent 7301bb217a
commit bdb2e60103
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -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