Added the first release of xpf, Xml Pipes and Filters.

svn path=/nixpkgs/trunk/; revision=1308
This commit is contained in:
Martin Bravenboer 2004-08-20 22:06:36 +00:00
parent dd3c98d3ec
commit db7289192e
2 changed files with 16 additions and 0 deletions

View file

@ -70,6 +70,10 @@ rec {
inherit fetchurl stdenv;
};
xpf = (import ../tools/text/xml/xpf) {
inherit fetchurl stdenv python libxml2;
};
gnutar = (import ../tools/archivers/gnutar) {
inherit fetchurl stdenv;
};

View file

@ -0,0 +1,12 @@
{stdenv, fetchurl, python, libxml2}:
assert libxml2.pythonSupport == true;
stdenv.mkDerivation {
name = "xpf-0.1";
src = fetchurl {
url = http://losser.st-lab.cs.uu.nl/~mbravenb/software/xpf/xpf-0.1.tar.gz;
md5 = "e762783664e4bbb3bb2e38a9ea821fa6";
};
buildInputs = [python libxml2];
}