From 9a30cdc464796ff00da38c73560694f5442d4959 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sat, 17 Dec 2016 23:04:43 +0100 Subject: [PATCH] squid: refactor, add features, adopt --- pkgs/servers/squid/default.nix | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/pkgs/servers/squid/default.nix b/pkgs/servers/squid/default.nix index 1ba154224395..b64dfeda667a 100644 --- a/pkgs/servers/squid/default.nix +++ b/pkgs/servers/squid/default.nix @@ -1,25 +1,36 @@ -{ fetchurl, stdenv, perl, lib, openldap, pam, db, cyrus_sasl, libcap, -expat, libxml2, libtool, openssl}: +{ stdenv, fetchurl, perl, openldap, pam, db, cyrus_sasl, libcap +, expat, libxml2, openssl }: + stdenv.mkDerivation rec { name = "squid-3.5.23"; + src = fetchurl { url = "http://www.squid-cache.org/Versions/v3/3.5/${name}.tar.xz"; sha256 = "1nqbljph2mbxjy1jzsis5vplfvvc2y6rdlxy609zx4hyyjchqk7s"; }; - buildInputs = [perl openldap pam db cyrus_sasl libcap expat libxml2 - libtool openssl]; + + 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" + "--enable-linux-netfilter" + "--enable-storeio=ufs,aufs,diskd,rock" + "--enable-removal-policies=lru,heap" + "--enable-delay-pools" + "--enable-x-accelerator-vary" ]; - meta = { + meta = with stdenv.lib; { description = "A caching proxy for the Web supporting HTTP, HTTPS, FTP, and more"; homepage = "http://www.squid-cache.org"; - license = stdenv.lib.licenses.gpl2; - platforms = stdenv.lib.platforms.linux; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ fpletz ]; }; }