nixpkgs/pkgs/development/tools/parsing/re2c/default.nix

20 lines
554 B
Nix
Raw Normal View History

2012-12-02 00:25:01 +01:00
{stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "re2c-${version}";
version = "0.13.7.4";
2012-12-02 00:25:01 +01:00
src = fetchurl {
url = "mirror://sourceforge/re2c/re2c/${version}/${name}.tar.gz";
sha256 = "0j42s2gpz0rgiadwyb7ksqgc7i02l0q2qnmiyaj5f1w5rfa2c7yy";
2012-12-02 00:25:01 +01:00
};
meta = {
description = "Tool for writing very fast and very flexible scanners";
homepage = "http://re2c.org";
2014-08-20 15:30:18 +02:00
license = stdenv.lib.licenses.publicDomain;
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
2012-12-02 00:25:01 +01:00
};
}