diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-11-08 22:14:07 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-11-08 23:00:57 +0100 |
commit | f5ab35f9f9338ac838ebe0e896f74cdc1063dabc (patch) | |
tree | 7b76aa472c6e8958b170f4c3ebb8246200ac11e2 | |
parent | 7b89818d00db96a5bb8fe7ed19b3b4e64bcda12b (diff) | |
download | guix-f5ab35f9f9338ac838ebe0e896f74cdc1063dabc.tar.gz guix-f5ab35f9f9338ac838ebe0e896f74cdc1063dabc.zip |
gnu: nbd: Update to 3.22.
* gnu/packages/networking.scm (nbd): Update to 3.22.
[native-inputs]: Add bison.
-rw-r--r-- | gnu/packages/networking.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index f67241e1bf..0a25aad6d2 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -4061,19 +4061,20 @@ stamps.") (define-public nbd (package (name "nbd") - (version "3.21") + (version "3.22") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/nbd/nbd/" version "/nbd-" version ".tar.xz")) (sha256 - (base32 "1ydylvvayi4w2d08flji9q03sl7y8hn0c26vsay3nwwikprqls77")))) + (base32 "1ljx6vb3lja5p0lr28vmjp27n9d6krlvq49bhqbcm2ns8vxd1vh6")))) (build-system gnu-build-system) (inputs `(("glib" ,glib))) (native-inputs - `(("pkg-config" ,pkg-config) + `(("bison" ,bison) + ("pkg-config" ,pkg-config) ("which" ,which))) (home-page "https://nbd.sourceforge.io/") (synopsis "NBD client and server") |