forked from mirrors/nixpkgs
Network Block Device (nbd): initial version 2.9.13
svn path=/nixpkgs/trunk/; revision=17414
This commit is contained in:
parent
f55439cbf5
commit
4dc1e7ba44
20
pkgs/tools/networking/nbd/default.nix
Normal file
20
pkgs/tools/networking/nbd/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{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";
|
||||
};
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/nbd/${name}.tar.bz2";
|
||||
sha256 = "d83da56a97ae70c6c52c994a64e960eaae0664fcadf1fc30f4c9f68c00d19da1";
|
||||
};
|
||||
buildInputs = [pkgconfig glib];
|
||||
|
||||
# Desirable, but doesn't work because glib is compiled without static
|
||||
# libraries by default:
|
||||
#
|
||||
# configureFlags = "LDFLAGS=-static";
|
||||
}
|
|
@ -1105,6 +1105,11 @@ let
|
|||
inherit fetchurl stdenv perl;
|
||||
};
|
||||
|
||||
nbd = import ../tools/networking/nbd {
|
||||
inherit fetchurl stdenv pkgconfig;
|
||||
inherit (gtkLibs) glib;
|
||||
};
|
||||
|
||||
nc6 = composedArgsAndFun (selectVersion ../tools/networking/nc6 "1.0") {
|
||||
inherit builderDefs;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue