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

37 lines
1.0 KiB
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 {
pname = "nbd";
version = "3.21";
src = fetchurl {
url = "mirror://sourceforge/nbd/nbd-${version}.tar.xz";
2021-01-20 10:28:45 +00:00
sha256 = "sha256-52iK852Rczu80tsIBixE/lA9AE5RUodAE5xEr/amvvk=";
};
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/nbd-${version}"
cp README.md "$out/share/doc/nbd-${version}/"
'';
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;
};
}