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

28 lines
749 B
Nix
Raw Normal View History

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