nixpkgs-suyu/pkgs/servers/rpcbind/default.nix

40 lines
1 KiB
Nix
Raw Normal View History

{ fetchgit, lib, stdenv, pkg-config, libnsl, libtirpc, autoreconfHook
2015-02-18 03:02:46 +01:00
, useSystemd ? true, systemd }:
2019-08-13 23:52:01 +02:00
stdenv.mkDerivation {
pname = "rpcbind";
2021-10-29 03:30:57 +02:00
version = "1.2.6";
2016-12-01 01:18:08 +01:00
src = fetchgit {
url = "git://git.linux-nfs.org/projects/steved/rpcbind.git";
rev = "c0c89b3bf2bdf304a5fe3cab626334e0cdaf1ef2";
2021-10-29 03:30:57 +02:00
sha256 = "sha256-aidETIZaQYzC3liDGM915wyBWpMrn4OudxEcFS/Iucw=";
};
2016-01-13 19:16:28 +01:00
patches = [
./sunrpc.patch
];
2017-11-07 20:34:51 +01:00
buildInputs = [ libnsl libtirpc ]
2021-01-15 08:07:56 +01: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 03:02:46 +01:00
meta = with lib; {
description = "ONC RPC portmapper";
2015-02-18 03:02:46 +01:00
license = licenses.bsd3;
platforms = platforms.unix;
homepage = "https://linux-nfs.org/";
2015-02-18 03:02:46 +01:00
maintainers = with maintainers; [ abbradar ];
longDescription = ''
Universal addresses to RPC program number mapper.
'';
};
}