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