re2c: minor cleanup

This commit is contained in:
Peter Hoeg 2017-07-09 22:43:32 +08:00
parent 154efd8ec5
commit f2be840e98

View File

@ -15,11 +15,11 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoreconfHook ]; nativeBuildInputs = [ autoreconfHook ];
meta = { meta = with stdenv.lib; {
description = "Tool for writing very fast and very flexible scanners"; description = "Tool for writing very fast and very flexible scanners";
homepage = "http://re2c.org"; homepage = "http://re2c.org";
license = stdenv.lib.licenses.publicDomain; license = licenses.publicDomain;
platforms = stdenv.lib.platforms.all; platforms = platforms.all;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ]; maintainers = with maintainers; [ thoughtpolice ];
}; };
} }