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

26 lines
649 B

{ stdenv, fetchFromGitHub, autoreconfHook }:
12 years ago
stdenv.mkDerivation rec {
name = "re2c-${version}";
version = "0.16";
sourceRoot = "${src.name}/re2c";
src = fetchFromGitHub {
owner = "skvadrik";
repo = "re2c";
rev = version;
sha256 = "0cijgmbyx34nwl2jmsswggkgvzy364871rkbxz8biq9x8xrhhjw5";
12 years ago
};
nativeBuildInputs = [ autoreconfHook ];
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
};
}