about summary refs log tree commit diff
path: root/pkgs/development/libraries/libxml2
diff options
context:
space:
mode:
authorArmijn Hemel <armijn@gpl-violations.org>2006-07-24 23:34:38 +0000
committerArmijn Hemel <armijn@gpl-violations.org>2006-07-24 23:34:38 +0000
commit56d8395f3dfb230a3012ecff0f8eb0bc3ccce9a1 (patch)
tree6097cb20da9658f56cb203150a99dafd3deb3a0f /pkgs/development/libraries/libxml2
parent40e7da74129ae1479f59f4a05d02b3bfe7b8394c (diff)
easier version switching
svn path=/nixpkgs/trunk/; revision=5929
Diffstat (limited to 'pkgs/development/libraries/libxml2')
-rw-r--r--pkgs/development/libraries/libxml2/default.nix21
-rw-r--r--pkgs/development/libraries/libxml2/libxml2-2.6.23.nix20
2 files changed, 21 insertions, 20 deletions
diff --git a/pkgs/development/libraries/libxml2/default.nix b/pkgs/development/libraries/libxml2/default.nix
index e72ecd52cdb22..140324b34dc4d 100644
--- a/pkgs/development/libraries/libxml2/default.nix
+++ b/pkgs/development/libraries/libxml2/default.nix
@@ -1,20 +1 @@
-{stdenv, fetchurl, zlib, python ? null, pythonSupport ? true}:
-
-assert zlib != null;
-assert pythonSupport -> python != null;
-
-stdenv.mkDerivation {
-  name = "libxml2-2.6.23";
-  builder = ./builder.sh;
-
-  src = fetchurl {
-    url = ftp://xmlsoft.org/libxml2/libxml2-2.6.23.tar.gz;
-    md5 = "0f37385e3ad73cc94db43d6873f4fc3b";
-  };
-
-  python = if pythonSupport then python else null;
-  inherit pythonSupport;
-
-  buildInputs =  if pythonSupport then [python] else [];
-  propagatedBuildInputs = [zlib];
-}
+import ./libxml2-2.6.23.nix
diff --git a/pkgs/development/libraries/libxml2/libxml2-2.6.23.nix b/pkgs/development/libraries/libxml2/libxml2-2.6.23.nix
new file mode 100644
index 0000000000000..e72ecd52cdb22
--- /dev/null
+++ b/pkgs/development/libraries/libxml2/libxml2-2.6.23.nix
@@ -0,0 +1,20 @@
+{stdenv, fetchurl, zlib, python ? null, pythonSupport ? true}:
+
+assert zlib != null;
+assert pythonSupport -> python != null;
+
+stdenv.mkDerivation {
+  name = "libxml2-2.6.23";
+  builder = ./builder.sh;
+
+  src = fetchurl {
+    url = ftp://xmlsoft.org/libxml2/libxml2-2.6.23.tar.gz;
+    md5 = "0f37385e3ad73cc94db43d6873f4fc3b";
+  };
+
+  python = if pythonSupport then python else null;
+  inherit pythonSupport;
+
+  buildInputs =  if pythonSupport then [python] else [];
+  propagatedBuildInputs = [zlib];
+}