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

20 lines
553 B
Nix
Raw Normal View History

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