squid: refactor, add features, adopt
This commit is contained in:
parent
4b67968688
commit
9a30cdc464
@ -1,25 +1,36 @@
|
|||||||
{ fetchurl, stdenv, perl, lib, openldap, pam, db, cyrus_sasl, libcap,
|
{ stdenv, fetchurl, perl, openldap, pam, db, cyrus_sasl, libcap
|
||||||
expat, libxml2, libtool, openssl}:
|
, expat, libxml2, openssl }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "squid-3.5.23";
|
name = "squid-3.5.23";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.squid-cache.org/Versions/v3/3.5/${name}.tar.xz";
|
url = "http://www.squid-cache.org/Versions/v3/3.5/${name}.tar.xz";
|
||||||
sha256 = "1nqbljph2mbxjy1jzsis5vplfvvc2y6rdlxy609zx4hyyjchqk7s";
|
sha256 = "1nqbljph2mbxjy1jzsis5vplfvvc2y6rdlxy609zx4hyyjchqk7s";
|
||||||
};
|
};
|
||||||
buildInputs = [perl openldap pam db cyrus_sasl libcap expat libxml2
|
|
||||||
libtool openssl];
|
buildInputs = [
|
||||||
|
perl openldap pam db cyrus_sasl libcap expat libxml2 openssl
|
||||||
|
];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--enable-ipv6"
|
"--enable-ipv6"
|
||||||
"--disable-strict-error-checking"
|
"--disable-strict-error-checking"
|
||||||
"--disable-arch-native"
|
"--disable-arch-native"
|
||||||
"--with-openssl"
|
"--with-openssl"
|
||||||
"--enable-ssl-crtd"
|
"--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 = {
|
meta = with stdenv.lib; {
|
||||||
description = "A caching proxy for the Web supporting HTTP, HTTPS, FTP, and more";
|
description = "A caching proxy for the Web supporting HTTP, HTTPS, FTP, and more";
|
||||||
homepage = "http://www.squid-cache.org";
|
homepage = "http://www.squid-cache.org";
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ fpletz ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user