mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 22:32:58 +03:00
XML validating parser for Arb
svn path=/nixpkgs/trunk/; revision=12951
This commit is contained in:
parent
6c772d627f
commit
1587e34e0a
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 New Issue
Block a user