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