lol

universal-ctags: 2016-12-17 -> 2017-01-08

+18 -3
+6 -3
pkgs/development/tools/misc/universal-ctags/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 name = "universal-ctags-${version}"; 5 - version = "2016-12-17"; 6 7 src = fetchFromGitHub { 8 owner = "universal-ctags"; 9 repo = "ctags"; 10 - rev = "3093f73e81cddbea5d122dccd4fd9a6323ebbbd3"; 11 - sha256 = "091359v3p865d39gchpc1x5qplf1s1y4nsph344ng5x1nkx44qsi"; 12 }; 13 14 buildInputs = [ autoreconfHook pkgconfig ]; 15 16 autoreconfPhase = '' 17 ./autogen.sh --tmpdir
··· 2 3 stdenv.mkDerivation rec { 4 name = "universal-ctags-${version}"; 5 + version = "2017-01-08"; 6 7 src = fetchFromGitHub { 8 owner = "universal-ctags"; 9 repo = "ctags"; 10 + rev = "9668032d8715265ca5b4ff16eb2efa8f1c450883"; 11 + sha256 = "0nwcf5mh3ba0g23zw7ym73pgpfdass412k2fy67ryr9vnc709jkj"; 12 }; 13 14 buildInputs = [ autoreconfHook pkgconfig ]; 15 + 16 + # remove when https://github.com/universal-ctags/ctags/pull/1267 is merged 17 + patches = [ ./sed-test.patch ]; 18 19 autoreconfPhase = '' 20 ./autogen.sh --tmpdir
+12
pkgs/development/tools/misc/universal-ctags/sed-test.patch
···
··· 1 + --- a/Tmain/sorted-help-message.d/run.sh 2017-01-10 11:20:51.515093465 +0100 2 + +++ b/Tmain/sorted-help-message.d/run.sh 2017-01-10 11:17:56.639213720 +0100 3 + @@ -27,7 +27,7 @@ 4 + extract_long_options() 5 + { 6 + sed -n '/Usage:/,$p' | \ 7 + - sed -n 's/\(^ --[:alnum:][<>[:alnum:]_-]*\).*/\1/p' 8 + + sed -n 's/\(^ --[[:alnum:]][<>[:alnum:]_-]*\).*/\1/p' 9 + } 10 + 11 + extract_debug_options() 12 +