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