Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

re2c: minor cleanup

+7 -7
+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 }