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) (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