re2c: 0.14.3 -> 0.16

This commit is contained in:
Robin Gloster 2016-08-25 15:47:32 +00:00
parent fbf9162cbb
commit eabef9420a
No known key found for this signature in database
GPG Key ID: 5E4C836C632C2882

View File

@ -1,14 +1,20 @@
{ stdenv, fetchurl }:
{ stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
name = "re2c-${version}";
version = "0.14.3";
version = "0.16";
src = fetchurl {
url = "mirror://sourceforge/re2c/re2c/${version}/${name}.tar.gz";
sha256 = "113yj5h38isfsjigqvb2j3ammfmxckgwyxmm0h4fyflzb7ghcs0w";
sourceRoot = "${name}-src/re2c";
src = fetchFromGitHub {
owner = "skvadrik";
repo = "re2c";
rev = version;
sha256 = "0cijgmbyx34nwl2jmsswggkgvzy364871rkbxz8biq9x8xrhhjw5";
};
nativeBuildInputs = [ autoreconfHook ];
meta = {
description = "Tool for writing very fast and very flexible scanners";
homepage = "http://re2c.org";