summary refs log tree commit diff
path: root/pkgs/tools/text/xml/rxp/default.nix
blob: c0e2ea1c4e25f0a5ee2a225effea347b545c4b9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, fetchurl} :

stdenv.mkDerivation rec {
  pname = "rxp";
  version = "1.5.0";

  src = fetchurl {
    url = "mirror://debian/pool/main/r/rxp/rxp_${version}.orig.tar.gz";
    sha256 = "0y365r36wzj4xn1dzhb03spxljnrx8vwqbiwnnwz4630129gzpm6";
  };

  meta = {
    license = stdenv.lib.licenses.gpl2Plus;
    description = "A validating XML parser written in C";
    homepage = "http://www.cogsci.ed.ac.uk/~richard/rxp.html";
    platforms = stdenv.lib.platforms.unix;
  };
}