guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add nbd.


From: guix-commits
Subject: branch master updated: gnu: Add nbd.
Date: Mon, 07 Sep 2020 06:55:05 -0400

This is an automated email from the git hooks/post-receive script.

dannym pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new aecb611  gnu: Add nbd.
aecb611 is described below

commit aecb61135c2edba236318b61fd0ac81832852a15
Author: Danny Milosavljevic <dannym@scratchpost.org>
AuthorDate: Mon Sep 7 12:54:16 2020 +0200

    gnu: Add nbd.
    
    * gnu/packages/networking.scm (nbd): New variable.
---
 gnu/packages/networking.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index b57634b..2530c54 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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]