libtirpc: updated to version 0.2.2

svn path=/nixpkgs/trunk/; revision=33211
This commit is contained in:
Peter Simons 2012-03-17 17:44:20 +00:00
parent 11410436e5
commit 457e59d99d

View file

@ -1,25 +1,27 @@
{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
name = "libtirpc-0.1.8-1";
name = "libtirpc-0.2.2";
src = fetchurl {
url = "http://nfsv4.bullopensource.org/tarballs/tirpc/${name}.tar.bz2";
sha256 = "0jf0sj2cv1rm1dm1i226ww9h93srljf8zf0yfy9mvwxg8gqnn5fy";
url = "mirror://sourceforge/libtirpc/${name}.tar.bz2";
sha256 = "f05eb17c85d62423858b8f74512cfe66a9ae1cedf93f03c2a0a32e04f0a33705";
};
preConfigure =
'' sed -es"|/etc/netconfig|$out/etc/netconfig|g" -i "Makefile.in"
preConfigure = ''
sed -es"|/etc/netconfig|$out/etc/netconfig|g" -i "doc/Makefile.in"
'';
preInstall = "mkdir -p $out/etc";
doCheck = true;
meta = {
homepage = "http://sourceforge.net/projects/libtirpc/";
description = "The transport-independent Sun RPC implementation (TI-RPC)";
longDescription =
'' Currently, NFS commands use the SunRPC routines provided by the
license = stdenv.lib.license.bsd3;
longDescription = ''
Currently, NFS commands use the SunRPC routines provided by the
glibc. These routines do not support IPv6 addresses. Ulrich
Drepper, who is the maintainer of the glibc, refuses any change in
the glibc concerning the RPC. He wants the RPC to become a separate
@ -32,13 +34,7 @@ stdenv.mkDerivation rec {
been ported to replace the SunRPC of the glibc.
'';
homepage = http://nfsv4.bullopensource.org/doc/tirpc_rpcbind.php;
# Free software license, see
# <http://www.gnu.org/licenses/license-list.html#SISSL>.
license = "Sun Industry Standards Source License 1.0";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.ludo ];
maintainers = [ stdenv.lib.maintainers.ludo stdenv.lib.maintainers.simons ];
};
}