nixpkgs/pkgs/servers/squid/default.nix

39 lines
1.2 KiB
Nix
Raw Normal View History

2018-11-22 16:32:52 +03:00
{ stdenv, fetchurl, perl, openldap, pam, db, cyrus_sasl, libcap
2019-08-22 16:31:32 +03:00
, expat, libxml2, openssl, pkgconfig
}:
2016-12-18 01:04:43 +03:00
stdenv.mkDerivation rec {
pname = "squid";
2020-08-31 08:22:17 +03:00
version = "4.13";
2016-12-18 01:04:43 +03:00
src = fetchurl {
url = "http://www.squid-cache.org/Versions/v4/${pname}-${version}.tar.xz";
2020-08-31 08:22:17 +03:00
sha256 = "1q1ywpic6s7dfjj3cwzcfgscc4zq0aih462gyas7j1z683ss14b8";
};
2016-12-18 01:04:43 +03:00
2019-08-22 16:31:32 +03:00
nativeBuildInputs = [ pkgconfig ];
2016-12-18 01:04:43 +03:00
buildInputs = [
perl openldap db cyrus_sasl expat libxml2 openssl
] ++ stdenv.lib.optionals stdenv.isLinux [ libcap pam ];
2016-12-18 01:04:43 +03:00
configureFlags = [
"--enable-ipv6"
"--disable-strict-error-checking"
"--disable-arch-native"
"--with-openssl"
"--enable-ssl-crtd"
2016-12-18 01:04:43 +03:00
"--enable-storeio=ufs,aufs,diskd,rock"
"--enable-removal-policies=lru,heap"
"--enable-delay-pools"
"--enable-x-accelerator-vary"
] ++ stdenv.lib.optional (stdenv.isLinux && !stdenv.hostPlatform.isMusl) "--enable-linux-netfilter";
2016-12-18 01:04:43 +03: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-18 01:04:43 +03:00
license = licenses.gpl2;
platforms = platforms.linux;
2019-08-22 01:39:52 +03:00
maintainers = with maintainers; [ fpletz raskin ];
};
}