3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/rpcbind/default.nix

32 lines
842 B
Nix
Raw Normal View History

2015-02-18 02:02:46 +00:00
{ fetchurl, stdenv, pkgconfig, libtirpc
, useSystemd ? true, systemd }:
2015-02-18 02:02:46 +00:00
let version = "0.2.2";
in stdenv.mkDerivation rec {
name = "rpcbind-${version}";
src = fetchurl {
2015-02-18 02:02:46 +00:00
url = "mirror://sourceforge/rpcbind/${version}/${name}.tar.bz2";
sha256 = "0acgl1c07ymnks692b90aq5ldj4h0km7n03kz26wxq6vjv3winqk";
};
patches = [ ./sunrpc.patch ];
2015-02-18 02:02:46 +00:00
buildInputs = [ libtirpc ]
++ stdenv.lib.optional useSystemd systemd;
2015-02-18 02:02:46 +00:00
configureFlags = stdenv.lib.optional (!useSystemd) "--with-systemdsystemunitdir=no";
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;
maintainers = with maintainers; [ abbradar ];
longDescription = ''
Universal addresses to RPC program number mapper.
'';
};
}