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

14 lines
323 B

12 years ago
{stdenv, fetchurl }:
stdenv.mkDerivation {
name = "re2c-0.13.6";
12 years ago
src = fetchurl {
url = mirror://sourceforge/re2c/re2c/0.13.6/re2c-0.13.6.tar.gz;
sha256 = "1h3na1zacw3166k6wkdjzjs67frjca9wj07wgfas56c7m8wk0ilf";
12 years ago
};
meta = {
description = "Tool for writing very fast and very flexible scanners";
12 years ago
};
}