2022-03-06 13:49:57 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, glib, which, nixosTests }:
|
2009-09-25 02:09:43 +00:00
|
|
|
|
2014-03-20 17:07:15 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-08-01 20:48:53 +00:00
|
|
|
pname = "nbd";
|
|
|
|
version = "3.21";
|
2010-07-28 21:28:23 +00:00
|
|
|
|
2009-09-25 02:09:43 +00:00
|
|
|
src = fetchurl {
|
2021-08-01 20:48:53 +00: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 02:09:43 +00:00
|
|
|
};
|
2010-07-28 21:28:23 +00:00
|
|
|
|
2018-09-14 17:05:40 +00:00
|
|
|
buildInputs = [ glib ]
|
2021-01-15 09:19:50 +00:00
|
|
|
++ lib.optional (stdenv ? glibc) stdenv.glibc.linuxHeaders;
|
2011-05-13 18:30:36 +00:00
|
|
|
|
2021-01-17 03:51:22 +00:00
|
|
|
nativeBuildInputs = [ pkg-config which ];
|
2018-09-14 17:05:40 +00:00
|
|
|
|
2012-02-21 15:07:39 +00:00
|
|
|
postInstall = ''
|
2021-08-01 20:48:53 +00: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 13:41:45 +00:00
|
|
|
doCheck = true;
|
2011-05-10 07:15:58 +00:00
|
|
|
|
2022-03-06 13:49:57 +00:00
|
|
|
passthru.tests = {
|
|
|
|
test = nixosTests.nbd;
|
|
|
|
};
|
|
|
|
|
2012-03-25 18:10:30 +00: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 18:10:30 +00:00
|
|
|
|
2010-07-28 21:28:23 +00:00
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://nbd.sourceforge.net";
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "Map arbitrary files as block devices over the network";
|
2021-01-15 09:19:50 +00:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
platforms = lib.platforms.linux;
|
2010-07-28 21:28:23 +00:00
|
|
|
};
|
2009-09-25 02:09:43 +00:00
|
|
|
}
|