2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, perl, openldap, pam, db, cyrus_sasl, libcap
|
2022-03-03 17:14:03 +00:00
|
|
|
, expat, libxml2, openssl, pkg-config, systemd
|
2022-10-01 17:09:31 +00:00
|
|
|
, cppunit
|
2019-08-22 13:31:32 +00:00
|
|
|
}:
|
2016-12-17 22:04:43 +00:00
|
|
|
|
2016-03-20 20:38:30 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-05-08 19:56:41 +00:00
|
|
|
pname = "squid";
|
2022-09-30 17:00:50 +00:00
|
|
|
version = "5.7";
|
2016-12-17 22:04:43 +00:00
|
|
|
|
2016-03-20 20:38:30 +00:00
|
|
|
src = fetchurl {
|
2022-03-03 17:14:03 +00:00
|
|
|
url = "http://www.squid-cache.org/Versions/v5/${pname}-${version}.tar.xz";
|
2022-09-30 17:00:50 +00:00
|
|
|
hash = "sha256-awdTqrpMnE79Mz5nEkyuz3rWzC04WB8Z0vAyH1t+zYE=";
|
2016-03-20 20:38:30 +00:00
|
|
|
};
|
2016-12-17 22:04:43 +00:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
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
|
2022-03-03 17:14:03 +00:00
|
|
|
] ++ lib.optionals stdenv.isLinux [ libcap pam systemd ];
|
2016-12-17 22:04:43 +00:00
|
|
|
|
2022-09-30 17:28:48 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
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"
|
2022-03-03 17:14:03 +00:00
|
|
|
"--enable-htcp"
|
|
|
|
] ++ lib.optional (stdenv.isLinux && !stdenv.hostPlatform.isMusl)
|
|
|
|
"--enable-linux-netfilter";
|
2016-03-20 20:38:30 +00:00
|
|
|
|
2022-10-01 17:09:31 +00:00
|
|
|
doCheck = true;
|
|
|
|
checkInputs = [ cppunit ];
|
|
|
|
preCheck = ''
|
|
|
|
# tests attempt to copy around "/bin/true" to make some things
|
|
|
|
# no-ops but this doesn't work if our "true" is a multi-call
|
|
|
|
# binary, so make our own fake "true" which will work when used
|
|
|
|
# this way
|
|
|
|
echo "#!$SHELL" > fake-true
|
|
|
|
chmod +x fake-true
|
|
|
|
grep -rlF '/bin/true' test-suite/ | while read -r filename ; do
|
|
|
|
substituteInPlace "$filename" \
|
|
|
|
--replace "$(type -P true)" "$(realpath fake-true)" \
|
|
|
|
--replace "/bin/true" "$(realpath fake-true)"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "A caching proxy for the Web supporting HTTP, HTTPS, FTP, and more";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.squid-cache.org";
|
2021-05-12 12:00:13 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2016-12-17 22:04:43 +00:00
|
|
|
platforms = platforms.linux;
|
2022-08-03 12:13:56 +00:00
|
|
|
maintainers = with maintainers; [ raskin ];
|
2016-03-20 20:38:30 +00:00
|
|
|
};
|
|
|
|
}
|