mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
b7321eddce
svn path=/nixpkgs/trunk/; revision=17645
20 lines
445 B
Nix
20 lines
445 B
Nix
{stdenv, fetchurl, autoconf, automake, coreutils}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "privoxy-3.0.12";
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/ijbswa/Sources/3.0.12%20%28stable%29/privoxy-3.0.12-stable-src.tar.gz;
|
|
sha256 = "16ngim1p4pb4zk8h7js4zjw280fxqxamasfngixikp2ivmzxl469";
|
|
};
|
|
|
|
buildInputs = [automake autoconf coreutils];
|
|
|
|
patches = [./disable-user-error.patch];
|
|
|
|
preConfigure = ''
|
|
autoheader
|
|
autoconf
|
|
'';
|
|
}
|