about summary refs log tree commit diff
path: root/pkgs/development/libraries/libxml2/libxml2-2.6.26.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/libxml2/libxml2-2.6.26.nix')
-rw-r--r--pkgs/development/libraries/libxml2/libxml2-2.6.26.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/pkgs/development/libraries/libxml2/libxml2-2.6.26.nix b/pkgs/development/libraries/libxml2/libxml2-2.6.26.nix
deleted file mode 100644
index 12ebf6a96462a..0000000000000
--- a/pkgs/development/libraries/libxml2/libxml2-2.6.26.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{stdenv, fetchurl, zlib, python ? null, pythonSupport ? true}:
-
-assert zlib != null;
-assert pythonSupport -> python != null;
-
-stdenv.mkDerivation {
-  name = "libxml2-2.6.26";
-  builder = ./builder.sh;
-
-  src = fetchurl {
-    url = http://nix.cs.uu.nl/dist/tarballs/libxml2-2.6.26.tar.gz;
-    md5 = "2d8d3805041edab967368b497642f981";
-  };
-
-  python = if pythonSupport then python else null;
-  inherit pythonSupport zlib;
-
-  buildInputs =  if pythonSupport then [python] else [];
-  propagatedBuildInputs = [zlib];
-}