2015-07-28 13:23:08 +01:00
|
|
|
{ fetchurl, stdenv, autoreconfHook, libkrb5 }:
|
2011-11-03 21:08:32 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-01-13 15:38:46 +00:00
|
|
|
name = "libtirpc-1.0.1";
|
2011-11-03 21:08:32 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-03-17 17:44:20 +00:00
|
|
|
url = "mirror://sourceforge/libtirpc/${name}.tar.bz2";
|
2016-01-13 15:38:46 +00:00
|
|
|
sha256 = "17mqrdgsgp9m92pmq7bvr119svdg753prqqxmg4cnz5y657rfmji";
|
2011-11-03 21:08:32 +00:00
|
|
|
};
|
|
|
|
|
2015-07-28 13:23:08 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2015-06-27 01:19:12 +01:00
|
|
|
propagatedBuildInputs = [ libkrb5 ];
|
2014-01-15 15:43:51 +00:00
|
|
|
|
2012-03-17 17:44:20 +00:00
|
|
|
preConfigure = ''
|
2012-03-21 09:18:40 +00:00
|
|
|
sed -es"|/etc/netconfig|$out/etc/netconfig|g" -i doc/Makefile.in tirpc/netconfig.h
|
2012-03-17 17:44:20 +00:00
|
|
|
'';
|
|
|
|
|
2012-01-18 20:16:00 +00:00
|
|
|
preInstall = "mkdir -p $out/etc";
|
2011-11-03 21:08:32 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2015-02-18 02:05:04 +00:00
|
|
|
meta = with stdenv.lib; {
|
2012-03-17 17:44:20 +00:00
|
|
|
homepage = "http://sourceforge.net/projects/libtirpc/";
|
2011-11-03 21:08:32 +00:00
|
|
|
description = "The transport-independent Sun RPC implementation (TI-RPC)";
|
2015-02-18 02:05:04 +00:00
|
|
|
license = licenses.bsd3;
|
2015-04-04 07:52:52 +01:00
|
|
|
platforms = platforms.linux;
|
2015-02-18 02:05:04 +00:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2012-03-17 17:44:20 +00:00
|
|
|
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
|
|
|
|
library. Other OS (NetBSD, FreeBSD, Solarix, HP-UX, AIX) have
|
|
|
|
migrated their SunRPC library to a TI-RPC (Transport Independent
|
|
|
|
RPC) implementation. This implementation allows the support of
|
|
|
|
other transports than UDP and TCP over IPv4. FreeBSD provides a
|
2014-12-30 02:31:03 +00:00
|
|
|
TI-RPC library ported from NetBSD with improvements. This library
|
2012-03-17 17:44:20 +00:00
|
|
|
already supports IPv6. So, the FreeBSD release 5.2.1 TI-RPC has
|
|
|
|
been ported to replace the SunRPC of the glibc.
|
|
|
|
'';
|
2011-11-03 21:08:32 +00:00
|
|
|
};
|
|
|
|
}
|