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
sourceRoot = "${src.name}/re2c";
8
9
src = fetchFromGitHub {
10
-
owner = "skvadrik";
11
-
repo = "re2c";
12
-
rev = version;
13
sha256 = "0cijgmbyx34nwl2jmsswggkgvzy364871rkbxz8biq9x8xrhhjw5";
14
};
15
16
nativeBuildInputs = [ autoreconfHook ];
17
18
-
meta = {
19
description = "Tool for writing very fast and very flexible scanners";
20
homepage = "http://re2c.org";
21
-
license = stdenv.lib.licenses.publicDomain;
22
-
platforms = stdenv.lib.platforms.all;
23
-
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
24
};
25
}
···
7
sourceRoot = "${src.name}/re2c";
8
9
src = fetchFromGitHub {
10
+
owner = "skvadrik";
11
+
repo = "re2c";
12
+
rev = version;
13
sha256 = "0cijgmbyx34nwl2jmsswggkgvzy364871rkbxz8biq9x8xrhhjw5";
14
};
15
16
nativeBuildInputs = [ autoreconfHook ];
17
18
+
meta = with stdenv.lib; {
19
description = "Tool for writing very fast and very flexible scanners";
20
homepage = "http://re2c.org";
21
+
license = licenses.publicDomain;
22
+
platforms = platforms.all;
23
+
maintainers = with maintainers; [ thoughtpolice ];
24
};
25
}