nixpkgs/pkgs/tools/text/xml/xpf/default.nix
Eelco Dolstra acba9240cd nixos.org/tarballs -> tarballs.nixos.org
It's currently the same machine, but tarballs.nixos.org should become
an S3/CloudFront site eventually.
2013-06-25 14:12:16 +02:00

20 lines
479 B
Nix

{stdenv, fetchurl, python, libxml2}:
assert libxml2.pythonSupport == true;
stdenv.mkDerivation {
name = "xpf-0.2";
src = fetchurl {
url = http://tarballs.nixos.org/xpf-0.2.tar.gz;
md5 = "d92658828139e1495e052d0cfe25d312";
};
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;
};
}