* Add meta info to xpf.

svn path=/nixpkgs/trunk/; revision=23269
This commit is contained in:
Eelco Dolstra 2010-08-20 09:18:53 +00:00
parent 544cb2a0c9
commit 7120017365

View File

@ -4,9 +4,16 @@ assert libxml2.pythonSupport == true;
stdenv.mkDerivation { stdenv.mkDerivation {
name = "xpf-0.2"; name = "xpf-0.2";
src = fetchurl { src = fetchurl {
url = http://nixos.org/tarballs/xpf-0.2.tar.gz; url = http://nixos.org/tarballs/xpf-0.2.tar.gz;
md5 = "d92658828139e1495e052d0cfe25d312"; md5 = "d92658828139e1495e052d0cfe25d312";
}; };
buildInputs = [python libxml2]; buildInputs = [python libxml2];
meta = {
description = "XML Pipes and Filters - command line tools for manipulating and querying XML data";
homepage = http://www.cs.uu.nl/wiki/bin/view/Martin/XmlPipesAndFilters;
};
} }