summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/tools/networking/nbd/default.nix19
1 files changed, 12 insertions, 7 deletions
diff --git a/pkgs/tools/networking/nbd/default.nix b/pkgs/tools/networking/nbd/default.nix
index dd6339ae105..660ae697979 100644
--- a/pkgs/tools/networking/nbd/default.nix
+++ b/pkgs/tools/networking/nbd/default.nix
@@ -1,20 +1,25 @@
 {stdenv, fetchurl, pkgconfig, glib}:
 
 stdenv.mkDerivation rec {
-  name = "nbd-2.9.13";
-  meta = {
-    homepage = "http://nbd.sourceforge.net";
-    description = "map arbitrary files as block devices over the network";
-    license = "GPLv2";
-  };
+  name = "nbd-2.9.15";
+
   src = fetchurl {
     url = "mirror://sourceforge/nbd/${name}.tar.bz2";
-    sha256 = "d83da56a97ae70c6c52c994a64e960eaae0664fcadf1fc30f4c9f68c00d19da1";
+    sha256 = "26e2ef18cc2f214d666eef1cfb31df1ba8ee6eaa78390afd6d18f2cce9c0c704";
   };
+
   buildInputs = [pkgconfig glib];
 
   # Link this package statically to generate an nbd-server binary that
   # has no dynamic dependencies and that can be used on (non-Nix) remote
   # machines that have a different setup than the local one.
   configureFlags = "LDFLAGS=-static";
+
+  meta = {
+    homepage = "http://nbd.sourceforge.net";
+    description = "map arbitrary files as block devices over the network";
+    license = "GPLv2";
+    maintainers = [ stdenv.lib.maintainers.simons  ];
+    platforms = stdenv.lib.platforms.gnu;
+  };
 }