nixpkgs/pkgs/development/tools/parsing/re2c/default.nix
Bjørn Forsman 083d0890f5 More description fixes
* Remove package name
* Start with upper case letter
* Remove trailing period

Also reword some descriptions and move some long descriptions to
longDescription.

I'm not touching generated packages.
2013-10-06 12:01:38 +02:00

13 lines
323 B
Nix

{stdenv, fetchurl }:
stdenv.mkDerivation {
name = "re2c-0.13.5";
src = fetchurl {
url = mirror://sourceforge/re2c/re2c/0.13.5/re2c-0.13.5.tar.gz;
sha256 = "1336c54b3cacjxg3grxdraq6a00yidr04z90605fhxglk89rbagk";
};
meta = {
description = "Tool for writing very fast and very flexible scanners";
};
}