gnu: Add nbd.

* gnu/packages/networking.scm (nbd): New variable.
This commit is contained in:
Danny Milosavljevic 2020-09-07 12:54:16 +02:00
parent 52d5009ff5
commit aecb61135c
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -3762,3 +3762,28 @@ (define-public hashcash
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)))