nixpkgs/pkgs/servers/squid/default.nix

37 lines
1,009 B
Nix
Raw Normal View History

2016-12-17 22:04:43 +00:00
{ stdenv, fetchurl, perl, openldap, pam, db, cyrus_sasl, libcap
, expat, libxml2, openssl }:
stdenv.mkDerivation rec {
2017-08-24 18:20:29 +00:00
name = "squid-3.5.27";
2016-12-17 22:04:43 +00:00
src = fetchurl {
url = "http://www.squid-cache.org/Versions/v3/3.5/${name}.tar.xz";
2017-08-24 18:20:29 +00:00
sha256 = "1v7hzvwwghrs751iag90z8909nvyp3c5jynaz4hmjqywy9kl7nsx";
};
2016-12-17 22:04:43 +00:00
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"
2016-12-17 22:04:43 +00:00
"--enable-linux-netfilter"
"--enable-storeio=ufs,aufs,diskd,rock"
"--enable-removal-policies=lru,heap"
"--enable-delay-pools"
"--enable-x-accelerator-vary"
];
2016-12-17 22:04:43 +00:00
meta = with stdenv.lib; {
description = "A caching proxy for the Web supporting HTTP, HTTPS, FTP, and more";
homepage = http://www.squid-cache.org;
2016-12-17 22:04:43 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ fpletz ];
};
}