summary refs log tree commit diff
path: root/pkgs/servers/squid
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2016-03-20 15:38:30 -0500
committerGraham Christensen <graham@grahamc.com>2016-03-21 09:55:44 -0500
commit133af7750ed5d422f9da5f5048ef7b267d267491 (patch)
tree26012a9ac8794eeeb4ce7d2a97dd05690b50bab0 /pkgs/servers/squid
parent75c90fff3952ca90a1b6ee35a8efc6ab6ea6a8b5 (diff)
downloadnixpkgs-133af7750ed5d422f9da5f5048ef7b267d267491.tar
nixpkgs-133af7750ed5d422f9da5f5048ef7b267d267491.tar.gz
nixpkgs-133af7750ed5d422f9da5f5048ef7b267d267491.tar.bz2
nixpkgs-133af7750ed5d422f9da5f5048ef7b267d267491.tar.lz
nixpkgs-133af7750ed5d422f9da5f5048ef7b267d267491.tar.xz
nixpkgs-133af7750ed5d422f9da5f5048ef7b267d267491.tar.zst
nixpkgs-133af7750ed5d422f9da5f5048ef7b267d267491.zip
squids: Remove unsupported versions of squid.
Diffstat (limited to 'pkgs/servers/squid')
-rw-r--r--pkgs/servers/squid/default.nix24
-rw-r--r--pkgs/servers/squid/squids.nix67
2 files changed, 24 insertions, 67 deletions
diff --git a/pkgs/servers/squid/default.nix b/pkgs/servers/squid/default.nix
new file mode 100644
index 00000000000..2831423d123
--- /dev/null
+++ b/pkgs/servers/squid/default.nix
@@ -0,0 +1,24 @@
+{ fetchurl, stdenv, perl, lib, openldap, pam, db, cyrus_sasl, libcap,
+expat, libxml2, libtool, openssl}:
+stdenv.mkDerivation rec {
+  name = "squid-3.5.15";
+  src = fetchurl {
+    url = "http://www.squid-cache.org/Versions/v3/3.5/${name}.tar.bz2";
+    sha256 = "1cgy6ffyarqd35plqmqi3mrsp0941c6n55pr3zavp07ksj46wgzm";
+  };
+  buildInputs = [perl openldap pam db cyrus_sasl libcap expat libxml2
+    libtool openssl];
+  configureFlags = [
+    "--enable-ipv6"
+    "--disable-strict-error-checking"
+    "--disable-arch-native"
+    "--with-openssl"
+    "--enable-ssl-crtd"
+  ];
+
+  meta = {
+    description = "a caching proxy for the Web supporting HTTP, HTTPS, FTP, and more";
+    homepage = "http://www.squid-cache.org";
+    license = stdenv.lib.licenses.gpl2;
+  };
+}
diff --git a/pkgs/servers/squid/squids.nix b/pkgs/servers/squid/squids.nix
deleted file mode 100644
index 948621de35b..00000000000
--- a/pkgs/servers/squid/squids.nix
+++ /dev/null
@@ -1,67 +0,0 @@
-args @ { fetchurl, stdenv, perl, lib, composableDerivation
-, openldap, pam, db, cyrus_sasl, kerberos, libcap, expat, libxml2, libtool
-, openssl, ... }: with args;
-let edf = composableDerivation.edf; in
-rec {
-  squid30 = composableDerivation.composableDerivation {} {
-    name = "squid-3.0-stable26";
-
-    buildInputs = [perl];
-
-    src = args.fetchurl {
-      url = http://www.squid-cache.org/Versions/v3/3.0/squid-3.0.STABLE26.tar.bz2;
-      sha256 = "3e54ae3ad09870203862f0856c7d0cca16a85f62d5012085009003ee3d5467b4";
-    };
-
-    configureFlags = ["--enable-ipv6" "--disable-strict-error-checking" "--disable-arch-native"];
-
-    meta = {
-      description = "http-proxy";
-      homepage = "http://www.squid-cache.org";
-      license = stdenv.lib.licenses.gpl2;
-    };
-
-  };
-
-  squid31 = squid30.merge {
-    name = "squid-3.1.23";
-    src = args.fetchurl {
-      url = http://www.squid-cache.org/Versions/v3/3.1/squid-3.1.23.tar.bz2;
-      sha256 = "13g4y0gg48xnlzrvpymb08gh25xi50y383faapkxws7i7v94305s";
-    };
-  };
-
-  squid32 = squid30.merge rec {
-    name = "squid-3.2.13";
-    src = args.fetchurl {
-      url = "http://www.squid-cache.org/Versions/v3/3.2/${name}.tar.bz2";
-      sha256 = "0dafqv00dr3nyrm9k47d6r7gv2r3f9hjd1ykl3kkvjca11r4n54j";
-    };
-    buildInputs = [openldap pam db cyrus_sasl libcap expat libxml2
-      libtool openssl];
-  };
-
-  squid34 = squid30.merge rec {
-    name = "squid-3.4.11";
-    src = args.fetchurl {
-      url = "http://www.squid-cache.org/Versions/v3/3.4/${name}.tar.bz2";
-      sha256 = "0p9dbsz541cpcc88albwpgq15jgpczv12j9b9g5xw6d3i977qm1h";
-    };
-    buildInputs = [openldap pam db cyrus_sasl libcap expat libxml2
-      libtool openssl];
-    configureFlags = ["--enable-ssl" "--enable-ssl-crtd"];
-  };
-
-  squid35 = squid30.merge rec {
-    name = "squid-3.5.15";
-    src = args.fetchurl {
-      url = "http://www.squid-cache.org/Versions/v3/3.5/${name}.tar.bz2";
-      sha256 = "1cgy6ffyarqd35plqmqi3mrsp0941c6n55pr3zavp07ksj46wgzm";
-    };
-    buildInputs = [openldap pam db cyrus_sasl libcap expat libxml2
-      libtool openssl];
-    configureFlags = ["--with-openssl" "--enable-ssl-crtd"];
-  };
-
-  latest = squid35;
-}