mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
Revert "rpcbind: 0.2.3 -> 1.0.7"
This reverts commit 5c31245047
. See #8902.
This commit is contained in:
parent
e6bdca625a
commit
c60ce5fa9b
@ -1,19 +1,16 @@
|
|||||||
{ fetchurl, stdenv, pkgconfig, libtirpc
|
{ fetchurl, stdenv, pkgconfig, libtirpc
|
||||||
, useSystemd ? true, systemd }:
|
, useSystemd ? true, systemd }:
|
||||||
|
|
||||||
let version = "1.0.7";
|
let version = "0.2.3";
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
name = "rpcbind-${version}";
|
name = "rpcbind-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/rpcbind/${version}/${name}.tar.bz2";
|
url = "mirror://sourceforge/rpcbind/${version}/${name}.tar.bz2";
|
||||||
sha256 = "14vl0kmavc1fay630f4w8l1hjfzhmcqm8d0akzahhgymh5fw1f7r";
|
sha256 = "0yyjzv4161rqxrgjcijkrawnk55rb96ha0pav48s03l2klx855wq";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./sunrpc.patch ];
|
patches = [ ./sunrpc.patch ];
|
||||||
postPatch = ''
|
|
||||||
sed -e 's|/usr/include/tirpc|${libtirpc}/include/tirpc|' -i src/Makefile.am -i src/Makefile.in
|
|
||||||
'';
|
|
||||||
|
|
||||||
buildInputs = [ libtirpc ]
|
buildInputs = [ libtirpc ]
|
||||||
++ stdenv.lib.optional useSystemd systemd;
|
++ stdenv.lib.optional useSystemd systemd;
|
||||||
|
Loading…
Reference in New Issue
Block a user