From 926413c2e9af560d773eb5604ad07c660e725d1f Mon Sep 17 00:00:00 2001 From: Aaron Jheng Date: Wed, 12 Jul 2023 09:13:46 +0000 Subject: [PATCH] reftools: unstable-2019-12-21 -> unstable-2021-02-13 --- pkgs/development/tools/reftools/default.nix | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/pkgs/development/tools/reftools/default.nix b/pkgs/development/tools/reftools/default.nix index 0e8371e4a015..44c6605c1ac1 100644 --- a/pkgs/development/tools/reftools/default.nix +++ b/pkgs/development/tools/reftools/default.nix @@ -4,9 +4,15 @@ }: buildGoModule rec { - pname = "reftools-unstable"; - version = "2019-12-21"; - rev = "65925cf013156409e591f7a1be4df96f640d02f4"; + pname = "reftools"; + version = "unstable-2021-02-13"; + + src = fetchFromGitHub { + owner = "davidrjenni"; + repo = "reftools"; + rev = "40322ffdc2e46fd7920d1f8250051bbd2f3bd34d"; + sha256 = "sha256-fHWtUoVK3G0Kn69O6/D0blM6Q/u4LuLinT6sxF18nFo="; + }; vendorSha256 = null; @@ -14,19 +20,10 @@ buildGoModule rec { excludedPackages = "cmd/fillswitch/test-fixtures"; - src = fetchFromGitHub { - inherit rev; - - owner = "davidrjenni"; - repo = "reftools"; - sha256 = "18jg13skqi2v2vh2k6jvazv6ymhhybangjd23xn2asfk9g6cvnjs"; - }; - meta = with lib; { description = "Refactoring tools for Go"; homepage = "https://github.com/davidrjenni/reftools"; license = licenses.bsd2; maintainers = with maintainers; [ kalbasit ]; - platforms = platforms.linux ++ platforms.darwin; }; }