nixpkgs/pkgs/servers/rpcbind/default.nix

39 lines
998 B
Nix
Raw Normal View History

2017-11-07 19:34:51 +00:00
{ fetchurl, stdenv, pkgconfig, libnsl, libtirpc
2015-02-18 02:02:46 +00:00
, useSystemd ? true, systemd }:
stdenv.mkDerivation rec {
2015-02-18 02:02:46 +00:00
name = "rpcbind-${version}";
version = "0.2.4";
2016-12-01 00:18:08 +00:00
src = fetchurl {
2015-02-18 02:02:46 +00:00
url = "mirror://sourceforge/rpcbind/${version}/${name}.tar.bz2";
sha256 = "0rjc867mdacag4yqvs827wqhkh27135rp9asj06ixhf71m9rljh7";
};
2016-01-13 18:16:28 +00:00
patches = [
./sunrpc.patch
];
2017-11-07 19:34:51 +00:00
buildInputs = [ libnsl libtirpc ]
2015-02-18 02:02:46 +00:00
++ stdenv.lib.optional useSystemd systemd;
configureFlags = [
"--with-systemdsystemunitdir=${if useSystemd then "$(out)/etc/systemd/system" else "no"}"
"--enable-warmstarts"
"--with-rpcuser=rpc"
];
2015-02-18 02:02:46 +00:00
nativeBuildInputs = [ pkgconfig ];
meta = with stdenv.lib; {
description = "ONC RPC portmapper";
2015-02-18 02:02:46 +00:00
license = licenses.bsd3;
platforms = platforms.unix;
homepage = https://sourceforge.net/projects/rpcbind/;
2015-02-18 02:02:46 +00:00
maintainers = with maintainers; [ abbradar ];
longDescription = ''
Universal addresses to RPC program number mapper.
'';
};
}