diff --git a/pkgs/applications/blockchains/lightwalletd/default.nix b/pkgs/applications/blockchains/lightwalletd/default.nix index 1cfd2071e867..9c86395da1d6 100644 --- a/pkgs/applications/blockchains/lightwalletd/default.nix +++ b/pkgs/applications/blockchains/lightwalletd/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "lightwalletd"; - version = "0.4.10"; + version = "0.4.13"; src = fetchFromGitHub { owner = "zcash"; repo = "lightwalletd"; - rev = "68789356fb1a75f62735a529b38389ef08ea7582"; - sha256 = "sha256-7gZhr6YMarGdgoGjg+oD4nZ/SAJ5cnhEDKmA4YMqJTo="; + rev = "v${version}"; + hash = "sha256-oFP1VHDhbx95QLGcIraHjeKSnLfvagJg4bcd3Lem+s4="; }; - vendorSha256 = null; + vendorHash = "sha256-RojAxNU5ggjTMPDF2BuB4NyuSRG6HMe3amYTjG2PRFc="; ldflags = [ "-s" "-w" @@ -38,6 +38,5 @@ buildGoModule rec { homepage = "https://github.com/zcash/lightwalletd"; maintainers = with maintainers; [ centromere ]; license = licenses.mit; - platforms = platforms.linux ++ platforms.darwin; }; }