Adding rpcbind.

Patch by Rickard Nilsson.


svn path=/nixpkgs/trunk/; revision=33341
This commit is contained in:
Lluís Batlle i Rossell 2012-03-21 20:35:15 +00:00
parent 214482c79a
commit 07c583c3d4
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ fetchurl, stdenv, libtirpc }:
stdenv.mkDerivation rec {
name = "rpcbind-0.2.0";
src = fetchurl {
url = "http://freefr.dl.sourceforge.net/project/rpcbind/rpcbind/0.2.0/rpcbind-0.2.0.tar.bz2";
sha256 = "c92f263e0353887f16379d7708ef1fb4c7eedcf20448bc1e4838f59497a00de3";
};
preConfigure = ''
export CPPFLAGS=-I${libtirpc}/include/tirpc
'';
buildInputs = [ libtirpc ];
meta = {
description = "ONC RPC portmapper";
license = "BSD";
longDescription = ''
Universal addresses to RPC program number mapper.
'';
};
}

View file

@ -5126,6 +5126,8 @@ let
portmap = callPackage ../servers/portmap { };
rpcbind = callPackage ../servers/rpcbind { };
monetdb = callPackage ../servers/sql/monetdb { };
mongodb = callPackage ../servers/nosql/mongodb { useV8 = (getConfig ["mongodb" "useV8"] false); };