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

39 lines
921 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake
2020-08-22 17:30:52 +00:00
, krb5, liburcu , libtirpc, libnsl
2020-07-09 21:27:00 +00:00
} :
stdenv.mkDerivation rec {
pname = "ntirpc";
2020-12-26 17:27:13 +00:00
version = "3.4";
2020-07-09 21:27:00 +00:00
src = fetchFromGitHub {
owner = "nfs-ganesha";
repo = "ntirpc";
rev = "v${version}";
2020-12-26 17:27:13 +00:00
sha256 = "1xdwqyc9m4lbsgr7ll1g0f84c2h8jrfkg67cgvsp424i1a7r9mm1";
2020-07-09 21:27:00 +00:00
};
postPatch = ''
substituteInPlace ntirpc/netconfig.h --replace "/etc/netconfig" "$out/etc/netconfig"
'';
nativeBuildInputs = [ cmake ];
2020-08-22 17:30:52 +00:00
buildInputs = [ krb5 liburcu libnsl ];
2020-07-09 21:27:00 +00:00
postInstall = ''
mkdir -p $out/etc
# Library needs a netconfig to run.
# Steal the file from libtirpc
cp ${libtirpc}/etc/netconfig $out/etc/
'';
meta = with lib; {
2020-07-09 21:27:00 +00:00
description = "Transport-independent RPC (TI-RPC)";
homepage = "https://github.com/nfs-ganesha/ntirpc";
maintainers = [ maintainers.markuskowa ];
platforms = platforms.linux;
license = licenses.bsd3;
};
}