XML validating parser for Arb
svn path=/nixpkgs/trunk/; revision=12951
This commit is contained in:
parent
6c772d627f
commit
1587e34e0a
1 changed files with 18 additions and 0 deletions
18
pkgs/tools/text/xml/rxp/default.nix
Normal file
18
pkgs/tools/text/xml/rxp/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{stdenv, fetchurl} :
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "rxp-1.2.3";
|
||||
src = fetchurl {
|
||||
url = http://ftp.de.debian.org/debian/pool/main/r/rxp/rxp_1.2.3.orig.tar.gz;
|
||||
sha256 = "1r4khvmnl5231y37ji8f3mikxy0dhdz155wi3qihfi27mc1yv534";
|
||||
};
|
||||
installPhase = ''
|
||||
ensureDir $out/bin
|
||||
cp rxp $out/bin
|
||||
'';
|
||||
meta = {
|
||||
license = "GPL";
|
||||
description = "a validating XML parser written in C";
|
||||
homepage = "http://www.cogsci.ed.ac.uk/~richard/rxp.html";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue