Skip to content

Commit

Permalink
squid4: init at 4.0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
7c6f434c committed Jan 26, 2017
1 parent 1d44213 commit 076e265
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
36 changes: 36 additions & 0 deletions pkgs/servers/squid/4.nix
@@ -0,0 +1,36 @@
{ stdenv, fetchurl, perl, openldap, pam, db, cyrus_sasl, libcap
, expat, libxml2, openssl }:

stdenv.mkDerivation rec {
name = "squid-4.0.17";

src = fetchurl {
url = "http://www.squid-cache.org/Versions/v4/${name}.tar.xz";
sha256 = "1713fqw59r3d892p5hpbkhmfcaw6jzfnngfn5f4h46sx963k87wb";
};

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 = with stdenv.lib; {
description = "A caching proxy for the Web supporting HTTP, HTTPS, FTP, and more";
homepage = "http://www.squid-cache.org";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ fpletz raskin ];
};
}
1 change: 1 addition & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -10704,6 +10704,7 @@ with pkgs;
spawn_fcgi = callPackage ../servers/http/spawn-fcgi { };

squid = callPackage ../servers/squid { };
squid4 = callPackage ../servers/squid/4.nix { };

sslh = callPackage ../servers/sslh { };

Expand Down

0 comments on commit 076e265

Please sign in to comment.