tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
re2c: minor cleanup
Peter Hoeg
8 years ago
f2be840e
154efd8e
+7
-7
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
parsing
re2c
default.nix
+7
-7
pkgs/development/tools/parsing/re2c/default.nix
···
7
7
sourceRoot = "${src.name}/re2c";
8
8
9
9
src = fetchFromGitHub {
10
10
-
owner = "skvadrik";
11
11
-
repo = "re2c";
12
12
-
rev = version;
10
10
+
owner = "skvadrik";
11
11
+
repo = "re2c";
12
12
+
rev = version;
13
13
sha256 = "0cijgmbyx34nwl2jmsswggkgvzy364871rkbxz8biq9x8xrhhjw5";
14
14
};
15
15
16
16
nativeBuildInputs = [ autoreconfHook ];
17
17
18
18
-
meta = {
18
18
+
meta = with stdenv.lib; {
19
19
description = "Tool for writing very fast and very flexible scanners";
20
20
homepage = "http://re2c.org";
21
21
-
license = stdenv.lib.licenses.publicDomain;
22
22
-
platforms = stdenv.lib.platforms.all;
23
23
-
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
21
21
+
license = licenses.publicDomain;
22
22
+
platforms = platforms.all;
23
23
+
maintainers = with maintainers; [ thoughtpolice ];
24
24
};
25
25
}