2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, perl, openldap, pam, db, cyrus_sasl, libcap
|
2022-03-03 18:14:03 +01:00
|
|
|
, expat, libxml2, openssl, pkg-config, systemd
|
2019-08-22 15:31:32 +02:00
|
|
|
}:
|
2016-12-17 23:04:43 +01:00
|
|
|
|
2016-03-20 21:38:30 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-05-08 21:56:41 +02:00
|
|
|
pname = "squid";
|
2022-03-03 18:14:03 +01:00
|
|
|
version = "5.4.1";
|
2016-12-17 23:04:43 +01:00
|
|
|
|
2016-03-20 21:38:30 +01:00
|
|
|
src = fetchurl {
|
2022-03-03 18:14:03 +01:00
|
|
|
url = "http://www.squid-cache.org/Versions/v5/${pname}-${version}.tar.xz";
|
|
|
|
sha256 = "sha256-300xCpFmOuWcKbD4GD8iYjxeb3MYaa95OAWYerlMpBw=";
|
2016-03-20 21:38:30 +01:00
|
|
|
};
|
2016-12-17 23:04:43 +01:00
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2016-12-17 23:04:43 +01:00
|
|
|
buildInputs = [
|
2018-01-17 18:52:50 +01:00
|
|
|
perl openldap db cyrus_sasl expat libxml2 openssl
|
2022-03-03 18:14:03 +01:00
|
|
|
] ++ lib.optionals stdenv.isLinux [ libcap pam systemd ];
|
2016-12-17 23:04:43 +01:00
|
|
|
|
2016-03-20 21:38:30 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-ipv6"
|
|
|
|
"--disable-strict-error-checking"
|
|
|
|
"--disable-arch-native"
|
|
|
|
"--with-openssl"
|
|
|
|
"--enable-ssl-crtd"
|
2016-12-17 23:04:43 +01:00
|
|
|
"--enable-storeio=ufs,aufs,diskd,rock"
|
|
|
|
"--enable-removal-policies=lru,heap"
|
|
|
|
"--enable-delay-pools"
|
|
|
|
"--enable-x-accelerator-vary"
|
2022-03-03 18:14:03 +01:00
|
|
|
"--enable-htcp"
|
|
|
|
] ++ lib.optional (stdenv.isLinux && !stdenv.hostPlatform.isMusl)
|
|
|
|
"--enable-linux-netfilter";
|
2016-03-20 21:38:30 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2016-06-20 12:53:46 +02:00
|
|
|
description = "A caching proxy for the Web supporting HTTP, HTTPS, FTP, and more";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.squid-cache.org";
|
2021-05-12 14:00:13 +02:00
|
|
|
license = licenses.gpl2Plus;
|
2016-12-17 23:04:43 +01:00
|
|
|
platforms = platforms.linux;
|
2019-08-22 00:39:52 +02:00
|
|
|
maintainers = with maintainers; [ fpletz raskin ];
|
2016-03-20 21:38:30 +01:00
|
|
|
};
|
|
|
|
}
|