3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/nbd/default.nix

36 lines
1,008 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchurl, pkg-config, glib, which }:
2014-03-20 17:07:15 +00:00
stdenv.mkDerivation rec {
name = "nbd-3.20";
src = fetchurl {
2014-01-29 17:31:36 +00:00
url = "mirror://sourceforge/nbd/${name}.tar.xz";
sha256 = "1kfnyx52nna2mnw264njk1dl2zc8m78sz031yp65mbmpi99v7qg0";
};
buildInputs = [ glib ]
2021-01-15 09:19:50 +00:00
++ lib.optional (stdenv ? glibc) stdenv.glibc.linuxHeaders;
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config which ];
postInstall = ''
mkdir -p "$out/share/doc/${name}"
2014-01-29 17:31:36 +00:00
cp README.md "$out/share/doc/${name}/"
'';
2016-09-19 14:41:45 +01:00
doCheck = true;
# Glib calls `clock_gettime', which is in librt. Linking that library
# here ensures that a proper rpath is added to the executable so that
# it can be loaded at run-time.
2021-01-15 09:19:50 +00:00
NIX_LDFLAGS = lib.optionalString stdenv.isLinux "-lrt -lpthread";
meta = {
homepage = "http://nbd.sourceforge.net";
description = "Map arbitrary files as block devices over the network";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2;
maintainers = [ lib.maintainers.peti ];
platforms = lib.platforms.linux;
};
}