gnu: Add nbd.
* gnu/packages/networking.scm (nbd): New variable.
This commit is contained in:
parent
52d5009ff5
commit
aecb61135c
1 changed files with 25 additions and 0 deletions
|
@ -3762,3 +3762,28 @@ hashcash stamps efficiently.
|
||||||
This package contains a command-line tool for computing and verifying hashcash
|
This package contains a command-line tool for computing and verifying hashcash
|
||||||
stamps.")
|
stamps.")
|
||||||
(license license:public-domain)))
|
(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)))
|
||||||
|
|
Reference in a new issue