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

14 lines
323 B
Nix
Raw Normal View History

2012-12-02 00:25:01 +01:00
{stdenv, fetchurl }:
stdenv.mkDerivation {
2013-12-13 23:41:47 +01:00
name = "re2c-0.13.6";
2012-12-02 00:25:01 +01:00
src = fetchurl {
2013-12-13 23:41:47 +01:00
url = mirror://sourceforge/re2c/re2c/0.13.6/re2c-0.13.6.tar.gz;
sha256 = "1h3na1zacw3166k6wkdjzjs67frjca9wj07wgfas56c7m8wk0ilf";
2012-12-02 00:25:01 +01:00
};
meta = {
description = "Tool for writing very fast and very flexible scanners";
2012-12-02 00:25:01 +01:00
};
}