2008-12-21 17:36:47 +01:00
|
|
|
args: with args;
|
|
|
|
let edf = composableDerivation.edf; in
|
|
|
|
rec {
|
2009-03-07 00:21:24 +01:00
|
|
|
squid30 = composableDerivation.composableDerivation {} {
|
2011-08-30 09:02:01 +02:00
|
|
|
name = "squid-3.0-stable26";
|
2008-12-21 17:36:47 +01:00
|
|
|
|
2009-03-07 00:21:24 +01:00
|
|
|
buildInputs = [perl];
|
2008-12-21 17:36:47 +01:00
|
|
|
|
2009-03-07 00:21:24 +01:00
|
|
|
src = args.fetchurl {
|
2011-08-30 09:02:01 +02:00
|
|
|
url = http://www.squid-cache.org/Versions/v3/3.0/squid-3.0.STABLE26.tar.bz2;
|
|
|
|
sha256 = "3e54ae3ad09870203862f0856c7d0cca16a85f62d5012085009003ee3d5467b4";
|
2009-03-07 00:21:24 +01:00
|
|
|
};
|
2008-12-21 17:36:47 +01:00
|
|
|
|
2013-04-06 12:40:06 +02:00
|
|
|
configureFlags = ["--enable-ipv6" "--disable-strict-error-checking"];
|
2008-12-21 17:36:47 +01:00
|
|
|
|
2009-03-07 00:21:24 +01:00
|
|
|
meta = {
|
|
|
|
description = "http-proxy";
|
|
|
|
homepage = "http://www.squid-cache.org";
|
|
|
|
license = "GPL2";
|
2008-12-21 17:36:47 +01:00
|
|
|
};
|
2009-03-07 00:21:24 +01:00
|
|
|
|
2008-12-21 17:36:47 +01:00
|
|
|
};
|
|
|
|
|
2011-08-30 09:02:01 +02:00
|
|
|
squid31 = squid30.merge {
|
2013-12-04 04:00:42 +01:00
|
|
|
name = "squid-3.1.23";
|
2008-12-21 17:36:47 +01:00
|
|
|
src = args.fetchurl {
|
2013-12-04 04:00:42 +01:00
|
|
|
url = http://www.squid-cache.org/Versions/v3/3.1/squid-3.1.23.tar.bz2;
|
|
|
|
sha256 = "13g4y0gg48xnlzrvpymb08gh25xi50y383faapkxws7i7v94305s";
|
2008-12-21 17:36:47 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2012-10-17 14:44:26 +02:00
|
|
|
squid32 = squid30.merge rec {
|
2013-12-23 04:18:34 +01:00
|
|
|
name = "squid-3.2.13";
|
2008-12-21 17:36:47 +01:00
|
|
|
src = args.fetchurl {
|
2012-03-30 07:21:56 +02:00
|
|
|
url = "http://www.squid-cache.org/Versions/v3/3.2/${name}.tar.bz2";
|
2013-12-23 04:18:34 +01:00
|
|
|
sha256 = "0dafqv00dr3nyrm9k47d6r7gv2r3f9hjd1ykl3kkvjca11r4n54j";
|
2008-12-21 17:36:47 +01:00
|
|
|
};
|
2014-01-31 21:05:37 +01:00
|
|
|
buildInputs = [openldap pam db cyrus_sasl libcap expat libxml2
|
2011-08-30 09:02:01 +02:00
|
|
|
libtool openssl];
|
2008-12-21 17:36:47 +01:00
|
|
|
};
|
|
|
|
|
2014-06-13 15:41:34 +02:00
|
|
|
squid34 = squid30.merge rec {
|
|
|
|
name = "squid-3.4.5";
|
|
|
|
src = args.fetchurl {
|
|
|
|
url = "http://www.squid-cache.org/Versions/v3/3.4/${name}.tar.bz2";
|
|
|
|
sha256 = "1d17l27bszdxnvdr78l7yry8ka38cq7g4774m5876q25ny1q1bmr";
|
|
|
|
};
|
|
|
|
buildInputs = [openldap pam db cyrus_sasl libcap expat libxml2
|
|
|
|
libtool openssl];
|
|
|
|
configureFlags = ["--enable-ssl" "--enable-ssl-crtd"];
|
|
|
|
};
|
|
|
|
|
|
|
|
latest = squid34;
|
2008-12-21 17:36:47 +01:00
|
|
|
}
|