Adding rpcbind.
Patch by Rickard Nilsson. svn path=/nixpkgs/trunk/; revision=33341
This commit is contained in:
@@ -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.
|
||||
'';
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user