rnv: init at 1.7.11

This commit is contained in:
Leon Isenberg 2016-08-23 14:37:49 +02:00
parent 8e3d0b8323
commit d556f53517
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, fetchurl, expat }:
stdenv.mkDerivation {
name = "rnv-${version}";
version = "1.7.11";
src = fetchurl {
url = "mirror://sourceforge/rnv/rnv-${version}.tar.xz";
sha256 = "1rlxrkkkp8b5j6lyvnd9z1d85grmwwmdggkxq6yl226nwkqj1faa";
};
buildInputs = [ expat ];
meta = with stdenv.lib; {
description = "Relax NG Compact Syntax validator";
homepage = http://www.davidashen.net/rnv.html;
license = licenses.bsd3;
platforms = platforms.all;
};
}

View file

@ -3686,6 +3686,8 @@ with pkgs;
rng_tools = callPackage ../tools/security/rng-tools { };
rnv = callPackage ../tools/text/xml/rnv { };
rq = callPackage ../development/tools/rq {
v8 = v8_static;
};