My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/tools/parsing/re2c/default.nix

20 lines
553 B

{ stdenv, fetchurl }:
12 years ago
stdenv.mkDerivation rec {
name = "re2c-${version}";
version = "0.14.3";
12 years ago
src = fetchurl {
url = "mirror://sourceforge/re2c/re2c/${version}/${name}.tar.gz";
sha256 = "113yj5h38isfsjigqvb2j3ammfmxckgwyxmm0h4fyflzb7ghcs0w";
12 years ago
};
meta = {
description = "Tool for writing very fast and very flexible scanners";
homepage = "http://re2c.org";
license = stdenv.lib.licenses.publicDomain;
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
12 years ago
};
}