From 56d8395f3dfb230a3012ecff0f8eb0bc3ccce9a1 Mon Sep 17 00:00:00 2001 From: Armijn Hemel Date: Mon, 24 Jul 2006 23:34:38 +0000 Subject: [PATCH] easier version switching svn path=/nixpkgs/trunk/; revision=5929 --- .../development/libraries/libxml2/default.nix | 21 +------------------ .../libraries/libxml2/libxml2-2.6.23.nix | 20 ++++++++++++++++++ 2 files changed, 21 insertions(+), 20 deletions(-) create mode 100644 pkgs/development/libraries/libxml2/libxml2-2.6.23.nix diff --git a/pkgs/development/libraries/libxml2/default.nix b/pkgs/development/libraries/libxml2/default.nix index e72ecd52cdb2..140324b34dc4 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 000000000000..e72ecd52cdb2 --- /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]; +}