diff options
author | Maxime Devos <maximedevos@telenet.be> | 2021-07-02 12:06:39 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:35 +0200 |
commit | 8ea60f75259c08d571e688648fc4dff70702e68d (patch) | |
tree | 7ceecdad180339e07b7bbc9816b1873abaa3e85a | |
parent | c209f4db0a201b8512763da69961d95eb88697b5 (diff) | |
download | guix-8ea60f75259c08d571e688648fc4dff70702e68d.tar.gz |
gnu: qbittorrent: Add 'bash' input for 'wrap-program'.
It is required for cross-compilation. * gnu/packages/bittorrent.scm (qbittorrent)[inputs]: Add 'bash-minimal'. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: I854fdcfe7e0cbfd2a99d4b80677caefb9e966ea6
-rw-r--r-- | gnu/packages/bittorrent.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm index a5a772bd5b..397448f06e 100644 --- a/gnu/packages/bittorrent.scm +++ b/gnu/packages/bittorrent.scm @@ -150,7 +150,8 @@ ;; its own icons in pure environments. `("GDK_PIXBUF_MODULE_FILE" = (,(getenv "GDK_PIXBUF_MODULE_FILE"))))))))) - (inputs (list curl + (inputs (list bash-minimal + curl (list glib "bin") gtkmm libappindicator |