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

28 lines
731 B
Nix
Raw Normal View History

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