nixpkgs/pkgs/servers/squid/default.nix

39 lines
1.2 KiB
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchurl, perl, openldap, pam, db, cyrus_sasl, libcap
, expat, libxml2, openssl, pkg-config
2019-08-22 13:31:32 +00:00
}:
2016-12-17 22:04:43 +00:00
stdenv.mkDerivation rec {
pname = "squid";
version = "4.15";
2016-12-17 22:04:43 +00:00
src = fetchurl {
url = "http://www.squid-cache.org/Versions/v4/${pname}-${version}.tar.xz";
sha256 = "sha256-tpOk5asoEaioVPYN4KYq+786lSux0EeVLJrgEyH4SiU=";
};
2016-12-17 22:04:43 +00:00
nativeBuildInputs = [ pkg-config ];
2016-12-17 22:04:43 +00:00
buildInputs = [
perl openldap db cyrus_sasl expat libxml2 openssl
2021-01-15 07:07:56 +00:00
] ++ lib.optionals stdenv.isLinux [ libcap pam ];
2016-12-17 22:04:43 +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"
2021-01-15 07:07:56 +00:00
] ++ lib.optional (stdenv.isLinux && !stdenv.hostPlatform.isMusl) "--enable-linux-netfilter";
meta = with lib; {
description = "A caching proxy for the Web supporting HTTP, HTTPS, FTP, and more";
homepage = "http://www.squid-cache.org";
license = licenses.gpl2Plus;
2016-12-17 22:04:43 +00:00
platforms = platforms.linux;
2019-08-21 22:39:52 +00:00
maintainers = with maintainers; [ fpletz raskin ];
};
}