diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2020-09-07 12:54:16 +0200 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2020-09-07 12:54:53 +0200 |
commit | aecb61135c2edba236318b61fd0ac81832852a15 (patch) | |
tree | c39c6f8c3beb8454103328140381abfaa4e81d12 | |
parent | 52d5009ff56996ef2afd5d433a353779f16dbad8 (diff) | |
download | guix-aecb61135c2edba236318b61fd0ac81832852a15.tar.gz |
gnu: Add nbd.
* gnu/packages/networking.scm (nbd): New variable.
-rw-r--r-- | gnu/packages/networking.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index b57634bb69..2530c540d7 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -3762,3 +3762,28 @@ hashcash stamps efficiently. This package contains a command-line tool for computing and verifying hashcash stamps.") (license license:public-domain))) + +(define-public nbd + (package + (name "nbd") + (version "3.20") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/nbd/nbd/3.20/nbd-" version + ".tar.xz")) + (sha256 + (base32 + "1kfnyx52nna2mnw264njk1dl2zc8m78sz031yp65mbmpi99v7qg0")))) + (build-system gnu-build-system) + (inputs + `(("glib" ,glib))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("which" ,which))) + (home-page "https://nbd.sourceforge.io/") + (synopsis "NBD client and server") + (description "This package provides the NBD (Network Block Devices) +client and server. It allows you to use remote block devices over a TCP/IP +network.") + (license license:gpl2))) |