squid4: init at 4.0.17
This commit is contained in:
parent
1d44213c7e
commit
076e265164
2 changed files with 37 additions and 0 deletions
36
pkgs/servers/squid/4.nix
Normal file
36
pkgs/servers/squid/4.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{ stdenv, fetchurl, perl, openldap, pam, db, cyrus_sasl, libcap
|
||||
, expat, libxml2, openssl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "squid-4.0.17";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.squid-cache.org/Versions/v4/${name}.tar.xz";
|
||||
sha256 = "1713fqw59r3d892p5hpbkhmfcaw6jzfnngfn5f4h46sx963k87wb";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
perl openldap pam db cyrus_sasl libcap expat libxml2 openssl
|
||||
];
|
||||
|
||||
configureFlags = [
|
||||
"--enable-ipv6"
|
||||
"--disable-strict-error-checking"
|
||||
"--disable-arch-native"
|
||||
"--with-openssl"
|
||||
"--enable-ssl-crtd"
|
||||
"--enable-linux-netfilter"
|
||||
"--enable-storeio=ufs,aufs,diskd,rock"
|
||||
"--enable-removal-policies=lru,heap"
|
||||
"--enable-delay-pools"
|
||||
"--enable-x-accelerator-vary"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A caching proxy for the Web supporting HTTP, HTTPS, FTP, and more";
|
||||
homepage = "http://www.squid-cache.org";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ fpletz raskin ];
|
||||
};
|
||||
}
|
|
@ -10704,6 +10704,7 @@ with pkgs;
|
|||
spawn_fcgi = callPackage ../servers/http/spawn-fcgi { };
|
||||
|
||||
squid = callPackage ../servers/squid { };
|
||||
squid4 = callPackage ../servers/squid/4.nix { };
|
||||
|
||||
sslh = callPackage ../servers/sslh { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue