My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/tools/text/xml/xpf/default.nix

21 lines
553 B

7 years ago
{stdenv, fetchurl, python2, libxml2}:
assert libxml2.pythonSupport == true;
stdenv.mkDerivation {
name = "xpf-0.2";
src = fetchurl {
url = "http://tarballs.nixos.org/xpf-0.2.tar.gz";
sha256 = "0ljx91w68rnh4871c0xlq2whlmhqz8dr39wcdczfjjpniqz1fmpz";
};
7 years ago
buildInputs = [ python2 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";
platforms = stdenv.lib.platforms.unix;
};
}