Skip to content

Commit f2be840

Browse files
committedJul 9, 2017
re2c: minor cleanup
1 parent 154efd8 commit f2be840

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
 

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

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ stdenv.mkDerivation rec {
77
sourceRoot = "${src.name}/re2c";
88

99
src = fetchFromGitHub {
10-
owner = "skvadrik";
11-
repo = "re2c";
12-
rev = version;
10+
owner = "skvadrik";
11+
repo = "re2c";
12+
rev = version;
1313
sha256 = "0cijgmbyx34nwl2jmsswggkgvzy364871rkbxz8biq9x8xrhhjw5";
1414
};
1515

1616
nativeBuildInputs = [ autoreconfHook ];
1717

18-
meta = {
18+
meta = with stdenv.lib; {
1919
description = "Tool for writing very fast and very flexible scanners";
2020
homepage = "http://re2c.org";
21-
license = stdenv.lib.licenses.publicDomain;
22-
platforms = stdenv.lib.platforms.all;
23-
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
21+
license = licenses.publicDomain;
22+
platforms = platforms.all;
23+
maintainers = with maintainers; [ thoughtpolice ];
2424
};
2525
}

0 commit comments

Comments
 (0)
Please sign in to comment.