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

34 lines
963 B
Nix
Raw Normal View History

2018-03-18 10:30:13 +00:00
{ stdenv, fetchurl, pkgconfig, autoreconfHook, glib, jansson }:
2018-01-28 13:57:48 +00:00
stdenv.mkDerivation rec {
2018-01-28 13:58:22 +00:00
name = "xnbd-0.4.0";
2018-01-28 13:57:48 +00:00
src = fetchurl {
2018-01-28 13:58:22 +00:00
url = "https://bitbucket.org/hirofuchi/xnbd/downloads/${name}.tgz";
sha256 = "00wkvsa0yaq4mabczcbfpj6rjvp02yahw8vdrq8hgb3wpm80x913";
2018-01-28 13:57:48 +00:00
};
2018-01-28 13:58:22 +00:00
sourceRoot = "${name}/trunk";
2018-01-28 13:57:48 +00:00
2020-01-19 21:39:04 +00:00
patches = [ ./0001-Fix-build-for-glibc-2.28.patch ];
2018-01-28 13:58:22 +00:00
nativeBuildInputs = [ autoreconfHook pkgconfig ];
2018-03-18 10:30:13 +00:00
buildInputs = [ glib jansson ];
# do not build docs, it is slow and it fails on Hydra
prePatch = ''
rm -rf doc
substituteInPlace configure.ac --replace "doc/Makefile" ""
substituteInPlace Makefile.am --replace "lib doc ." "lib ."
'';
2018-01-28 13:57:48 +00:00
meta = {
homepage = "https://bitbucket.org/hirofuchi/xnbd";
2018-01-28 13:57:48 +00:00
description = "Yet another NBD (Network Block Device) server program";
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.volth ];
platforms = stdenv.lib.platforms.linux;
};
}