2009-09-25 04:09:43 +02:00
|
|
|
{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];
|
|
|
|
|
2009-09-28 17:10:55 +02:00
|
|
|
# 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";
|
2009-09-25 04:09:43 +02:00
|
|
|
}
|