From: John Darrington <j...@gnu.org> * gnu/packages/linux.scm (rpcbind): New variable. --- gnu/packages/linux.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 2d39be1..ff6b220 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -225,6 +225,34 @@ the default nsswitch and the experimental umich_ldap.") (license (license:non-copyleft "file://COPYING" "See COPYING in the distribution.")))) +(define-public rpcbind + (package + (name "rpcbind") + (version "0.2.3") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/" name "/" name "/" + version "/" + name "-" version ".tar.bz2")) + (sha256 + (base32 + "0yyjzv4161rqxrgjcijkrawnk55rb96ha0pav48s03l2klx855wq")))) + (build-system gnu-build-system) + (arguments + `(#:configure-flags + `("--with-systemdsystemunitdir=no"))) + (inputs + `(("libtirpc" ,libtirpc))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "http://rpcbind.sourceforge.net/") + (synopsis "A server to convert RPC program numbers into universal addresses") + (description + "The rpcbind utility is a server that converts RPC program numbers into +universal addresses.") + (license license:bsd-3))) + (define-public nfs-utils (package (name "nfs-utils") -- 2.1.4