summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorPjotr Prins <pjotr.public01@thebird.nl>2008-10-05 08:57:39 +0000
committerPjotr Prins <pjotr.public01@thebird.nl>2008-10-05 08:57:39 +0000
commit1587e34e0a43be7420320b5f7c65193cbdc322e0 (patch)
tree3a3f4f5b6a5fea3e5f321dd8c327cd93b37715e6 /pkgs/tools
parent6c772d627ffc2dccecab61a47fcd8ee28dce9fdd (diff)
downloadnixpkgs-1587e34e0a43be7420320b5f7c65193cbdc322e0.tar
nixpkgs-1587e34e0a43be7420320b5f7c65193cbdc322e0.tar.gz
nixpkgs-1587e34e0a43be7420320b5f7c65193cbdc322e0.tar.bz2
nixpkgs-1587e34e0a43be7420320b5f7c65193cbdc322e0.tar.lz
nixpkgs-1587e34e0a43be7420320b5f7c65193cbdc322e0.tar.xz
nixpkgs-1587e34e0a43be7420320b5f7c65193cbdc322e0.tar.zst
nixpkgs-1587e34e0a43be7420320b5f7c65193cbdc322e0.zip
XML validating parser for Arb
svn path=/nixpkgs/trunk/; revision=12951
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/text/xml/rxp/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/tools/text/xml/rxp/default.nix b/pkgs/tools/text/xml/rxp/default.nix
new file mode 100644
index 00000000000..c54ec9f7028
--- /dev/null
+++ b/pkgs/tools/text/xml/rxp/default.nix
@@ -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";
+  };
+}