2022-07-20 04:20:00 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, glib, which, bison, nixosTests, linuxHeaders, gnutls }:
|
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";
|
2022-05-22 16:34:39 +00:00
|
|
|
version = "3.24";
|
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";
|
2022-05-22 16:34:39 +00:00
|
|
|
sha256 = "sha256-aHcVbSOnsz917uidL1wskcVCr8PNy2Nt6lqIU5pY0Qw=";
|
2009-09-25 02:09:43 +00:00
|
|
|
};
|
2010-07-28 21:28:23 +00:00
|
|
|
|
2022-07-20 04:20:00 +00:00
|
|
|
buildInputs = [ glib gnutls ]
|
|
|
|
++ lib.optionals stdenv.isLinux [ linuxHeaders ];
|
2011-05-13 18:30:36 +00:00
|
|
|
|
2022-05-22 16:34:39 +00:00
|
|
|
nativeBuildInputs = [ pkg-config which bison ];
|
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
|
|
|
|
2022-07-20 04:20:00 +00:00
|
|
|
doCheck = !stdenv.isDarwin;
|
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 = {
|
2022-07-20 04:20:00 +00:00
|
|
|
homepage = "https://nbd.sourceforge.io/";
|
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;
|
2022-07-20 04:20:00 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2010-07-28 21:28:23 +00:00
|
|
|
};
|
2009-09-25 02:09:43 +00:00
|
|
|
}
|