nixpkgs/pkgs/tools/networking/nbd/default.nix

36 lines
1006 B
Nix
Raw Normal View History

2021-01-15 01:19:50 -08:00
{ lib, stdenv, fetchurl, pkgconfig, glib, which }:
2014-03-20 10:07:15 -07:00
stdenv.mkDerivation rec {
name = "nbd-3.20";
src = fetchurl {
2014-01-29 09:31:36 -08:00
url = "mirror://sourceforge/nbd/${name}.tar.xz";
sha256 = "1kfnyx52nna2mnw264njk1dl2zc8m78sz031yp65mbmpi99v7qg0";
};
buildInputs = [ glib ]
2021-01-15 01:19:50 -08:00
++ lib.optional (stdenv ? glibc) stdenv.glibc.linuxHeaders;
nativeBuildInputs = [ pkgconfig which ];
postInstall = ''
mkdir -p "$out/share/doc/${name}"
2014-01-29 09:31:36 -08:00
cp README.md "$out/share/doc/${name}/"
'';
2016-09-19 06:41:45 -07: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 01:19:50 -08: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 01:19:50 -08:00
license = lib.licenses.gpl2;
maintainers = [ lib.maintainers.peti ];
platforms = lib.platforms.linux;
};
}