summary refs log tree commit diff
path: root/pkgs/servers/squid/4.nix
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2017-01-26 09:29:54 +0100
committerMichael Raskin <7c6f434c@mail.ru>2017-01-26 09:29:54 +0100
commit076e2651641d9ae706c581e7c8755b1c5c8d7962 (patch)
tree7e6836a5215450d8279c4a5dc2d550050eaf6b70 /pkgs/servers/squid/4.nix
parent1d44213c7e1bbf565167172481cb1eb598e4d537 (diff)
downloadnixlib-076e2651641d9ae706c581e7c8755b1c5c8d7962.tar
nixlib-076e2651641d9ae706c581e7c8755b1c5c8d7962.tar.gz
nixlib-076e2651641d9ae706c581e7c8755b1c5c8d7962.tar.bz2
nixlib-076e2651641d9ae706c581e7c8755b1c5c8d7962.tar.lz
nixlib-076e2651641d9ae706c581e7c8755b1c5c8d7962.tar.xz
nixlib-076e2651641d9ae706c581e7c8755b1c5c8d7962.tar.zst
nixlib-076e2651641d9ae706c581e7c8755b1c5c8d7962.zip
squid4: init at 4.0.17
Diffstat (limited to 'pkgs/servers/squid/4.nix')
-rw-r--r--pkgs/servers/squid/4.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/servers/squid/4.nix b/pkgs/servers/squid/4.nix
new file mode 100644
index 000000000000..52fcad7ff958
--- /dev/null
+++ b/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 ];
+  };
+}