nixpkgs/pkgs/servers/rpcbind/default.nix

36 lines
974 B
Nix
Raw Normal View History

2015-02-18 03:02:46 +01:00
{ fetchurl, stdenv, pkgconfig, libtirpc
, useSystemd ? true, systemd }:
let version = "0.2.3";
2015-02-18 03:02:46 +01:00
in stdenv.mkDerivation rec {
name = "rpcbind-${version}";
src = fetchurl {
2015-02-18 03:02:46 +01:00
url = "mirror://sourceforge/rpcbind/${version}/${name}.tar.bz2";
sha256 = "0yyjzv4161rqxrgjcijkrawnk55rb96ha0pav48s03l2klx855wq";
};
2016-01-13 19:16:28 +01:00
patches = [
./sunrpc.patch
./0001-handle_reply-Don-t-use-the-xp_auth-pointer-directly.patch
];
2015-02-18 03:02:46 +01:00
buildInputs = [ libtirpc ]
++ stdenv.lib.optional useSystemd systemd;
2015-02-18 03:02:46 +01:00
configureFlags = stdenv.lib.optional (!useSystemd) "--with-systemdsystemunitdir=no";
2015-02-18 03:02:46 +01:00
nativeBuildInputs = [ pkgconfig ];
meta = with stdenv.lib; {
description = "ONC RPC portmapper";
2015-02-18 03:02:46 +01:00
license = licenses.bsd3;
platforms = platforms.unix;
2015-05-18 16:06:42 +02:00
homepage = http://sourceforge.net/projects/rpcbind/;
2015-02-18 03:02:46 +01:00
maintainers = with maintainers; [ abbradar ];
longDescription = ''
Universal addresses to RPC program number mapper.
'';
};
}