nixpkgs/pkgs/servers/rpcbind/default.nix

40 lines
1 KiB
Nix
Raw Permalink Normal View History

{ fetchgit, lib, stdenv, pkg-config, libnsl, libtirpc, autoreconfHook
2015-02-18 02:02:46 +00:00
, useSystemd ? true, systemd }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "rpcbind";
version = "1.2.5";
2016-12-01 00:18:08 +00:00
src = fetchgit {
url = "git://git.linux-nfs.org/projects/steved/rpcbind.git";
rev = "c0c89b3bf2bdf304a5fe3cab626334e0cdaf1ef2";
sha256 = "1k5rr0pia70ifyp877rbjdd82377fp7ii0sqvv18qhashr6489va";
};
2016-01-13 18:16:28 +00:00
patches = [
./sunrpc.patch
];
2017-11-07 19:34:51 +00:00
buildInputs = [ libnsl libtirpc ]
2021-01-15 07:07:56 +00:00
++ lib.optional useSystemd systemd;
configureFlags = [
"--with-systemdsystemunitdir=${if useSystemd then "${placeholder "out"}/etc/systemd/system" else "no"}"
"--enable-warmstarts"
"--with-rpcuser=rpc"
];
nativeBuildInputs = [ autoreconfHook pkg-config ];
2015-02-18 02:02:46 +00:00
meta = with lib; {
description = "ONC RPC portmapper";
2015-02-18 02:02:46 +00:00
license = licenses.bsd3;
platforms = platforms.unix;
homepage = "https://linux-nfs.org/";
2015-02-18 02:02:46 +00:00
maintainers = with maintainers; [ abbradar ];
longDescription = ''
Universal addresses to RPC program number mapper.
'';
};
}