2018-11-22 13:32:52 +00:00
|
|
|
{ stdenv, fetchurl, perl, openldap, pam, db, cyrus_sasl, libcap
|
2019-08-22 13:31:32 +00:00
|
|
|
, expat, libxml2, openssl, pkgconfig
|
|
|
|
}:
|
2016-12-17 22:04:43 +00:00
|
|
|
|
2016-03-20 20:38:30 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-21 22:39:52 +00:00
|
|
|
name = "squid-4.8";
|
2016-12-17 22:04:43 +00:00
|
|
|
|
2016-03-20 20:38:30 +00:00
|
|
|
src = fetchurl {
|
2019-08-21 22:39:52 +00:00
|
|
|
url = "http://www.squid-cache.org/Versions/v4/${name}.tar.xz";
|
|
|
|
sha256 = "0432m0ix046rkja7r7qpydgsm2kf1w393xym15nx6h9kv4jb7kbq";
|
2016-03-20 20:38:30 +00:00
|
|
|
};
|
2016-12-17 22:04:43 +00:00
|
|
|
|
2019-08-22 13:31:32 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2016-12-17 22:04:43 +00:00
|
|
|
buildInputs = [
|
2018-01-17 17:52:50 +00:00
|
|
|
perl openldap db cyrus_sasl expat libxml2 openssl
|
|
|
|
] ++ stdenv.lib.optionals stdenv.isLinux [ libcap pam ];
|
2016-12-17 22:04:43 +00:00
|
|
|
|
2016-03-20 20:38:30 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-ipv6"
|
|
|
|
"--disable-strict-error-checking"
|
|
|
|
"--disable-arch-native"
|
|
|
|
"--with-openssl"
|
|
|
|
"--enable-ssl-crtd"
|
2016-12-17 22:04:43 +00:00
|
|
|
"--enable-storeio=ufs,aufs,diskd,rock"
|
|
|
|
"--enable-removal-policies=lru,heap"
|
|
|
|
"--enable-delay-pools"
|
|
|
|
"--enable-x-accelerator-vary"
|
2018-01-17 23:28:09 +00:00
|
|
|
] ++ stdenv.lib.optional (stdenv.isLinux && !stdenv.hostPlatform.isMusl) "--enable-linux-netfilter";
|
2016-03-20 20:38:30 +00:00
|
|
|
|
2016-12-17 22:04:43 +00:00
|
|
|
meta = with stdenv.lib; {
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "A caching proxy for the Web supporting HTTP, HTTPS, FTP, and more";
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = http://www.squid-cache.org;
|
2016-12-17 22:04:43 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2019-08-21 22:39:52 +00:00
|
|
|
maintainers = with maintainers; [ fpletz raskin ];
|
2016-03-20 20:38:30 +00:00
|
|
|
};
|
|
|
|
}
|