nixpkgs/pkgs/development/libraries/libnfs/default.nix

28 lines
749 B
Nix
Raw Normal View History

2017-09-26 18:26:22 +03:00
{ stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
name = "libnfs-${version}";
version = "3.0.0";
2017-09-26 18:26:22 +03:00
src = fetchFromGitHub {
owner = "sahlberg";
repo = "libnfs";
rev = "libnfs-${version}";
sha256 = "115p55y2cbs92z5lmcnjx1v29lwinpgq4sha9v1kq1vd8674h404";
2017-09-26 18:26:22 +03:00
};
nativeBuildInputs = [ autoreconfHook ];
2018-03-21 22:40:39 +03:00
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.cc.isClang "-Wno-error=tautological-compare";
2017-09-26 18:26:22 +03:00
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "NFS client library";
homepage = https://github.com/sahlberg/libnfs;
2017-09-27 17:27:32 +03:00
license = with licenses; [ lgpl2 bsd2 gpl3 ];
2017-09-26 18:26:22 +03:00
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.unix;
};
}