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

go-symbols: unstable-2017-02-06 -> unstable-2018-05-23 (#47468)

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

authored by

Vincent Demeester and committed by
xeji
93e26bae 2fc7b67c

+7 -6
+7 -6
pkgs/development/tools/go-symbols/default.nix
··· 1 - { stdenv, buildGoPackage, fetchgit }: 1 + { stdenv, buildGoPackage, fetchFromGitHub }: 2 2 3 3 buildGoPackage rec { 4 4 name = "go-symbols-${version}"; 5 - version = "unstable-2017-02-06"; 6 - rev = "5a7f75904fb552189036c640d04cd6afef664836"; 5 + version = "unstable-2018-05-23"; 6 + rev = "953befd75e223f514580fcb698aead0dd6ad3421"; 7 7 8 8 goPackagePath = "github.com/acroca/go-symbols"; 9 9 goDeps = ./deps.nix; 10 10 11 - src = fetchgit { 11 + src = fetchFromGitHub { 12 12 inherit rev; 13 - url = "https://github.com/acroca/go-symbols"; 14 - sha256 = "0qh2jjhwwk48gi8yii0z031bah11anxfz81nwflsiww7n426a8bb"; 13 + owner = "acroca"; 14 + repo = "go-symbols"; 15 + sha256 = "0dwf7w3zypv5brk68n7siakz222jwnhrhkzvwk1iwdffk79gqp3x"; 15 16 }; 16 17 17 18 meta = {