summary refs log tree commit diff
path: root/pkgs/tools/text/xml/xpf/default.nix
blob: e1957333b3fb9d403ebe5976bd411fa205c69057 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{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;
    sha256 = "0ljx91w68rnh4871c0xlq2whlmhqz8dr39wcdczfjjpniqz1fmpz";
  };
  
  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;
  };
}