2021-01-17 03:51:22 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, glib, which }:
|
2009-09-25 03:09:43 +01:00
|
|
|
|
2014-03-20 17:07:15 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-08-01 21:48:53 +01:00
|
|
|
pname = "nbd";
|
|
|
|
version = "3.21";
|
2010-07-28 22:28:23 +01:00
|
|
|
|
2009-09-25 03:09:43 +01:00
|
|
|
src = fetchurl {
|
2021-08-01 21:48:53 +01:00
|
|
|
url = "mirror://sourceforge/nbd/nbd-${version}.tar.xz";
|
2021-01-20 10:28:45 +00:00
|
|
|
sha256 = "sha256-52iK852Rczu80tsIBixE/lA9AE5RUodAE5xEr/amvvk=";
|
2009-09-25 03:09:43 +01:00
|
|
|
};
|
2010-07-28 22:28:23 +01:00
|
|
|
|
2018-09-14 18:05:40 +01:00
|
|
|
buildInputs = [ glib ]
|
2021-01-15 09:19:50 +00:00
|
|
|
++ lib.optional (stdenv ? glibc) stdenv.glibc.linuxHeaders;
|
2011-05-13 19:30:36 +01:00
|
|
|
|
2021-01-17 03:51:22 +00:00
|
|
|
nativeBuildInputs = [ pkg-config which ];
|
2018-09-14 18:05:40 +01:00
|
|
|
|
2012-02-21 15:07:39 +00:00
|
|
|
postInstall = ''
|
2021-08-01 21:48:53 +01:00
|
|
|
mkdir -p "$out/share/doc/nbd-${version}"
|
|
|
|
cp README.md "$out/share/doc/nbd-${version}/"
|
2012-02-21 15:07:39 +00:00
|
|
|
'';
|
2012-02-07 19:54:25 +00:00
|
|
|
|
2016-09-19 14:41:45 +01:00
|
|
|
doCheck = true;
|
2011-05-10 08:15:58 +01:00
|
|
|
|
2012-03-25 19:10:30 +01:00
|
|
|
# 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";
|
2012-03-25 19:10:30 +01:00
|
|
|
|
2010-07-28 22:28:23 +01:00
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://nbd.sourceforge.net";
|
2016-06-20 11:53:46 +01:00
|
|
|
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;
|
2010-07-28 22:28:23 +01:00
|
|
|
};
|
2009-09-25 03:09:43 +01:00
|
|
|
}
|