summary refs log tree commit diff
diff options
context:
space:
mode:
authorJean-François Roche <jfroche@affinitic.be>2022-02-03 17:15:34 +0100
committerGitHub <noreply@github.com>2022-02-03 17:15:34 +0100
commit743d01161616720fb668eae2ea7199edb37af9e3 (patch)
tree5079733f19bce07ad701849b0bc1a964e3717118
parentadf3312076decedd2896a8a540c4fcbac5a198c2 (diff)
downloadnixpkgs-743d01161616720fb668eae2ea7199edb37af9e3.tar
nixpkgs-743d01161616720fb668eae2ea7199edb37af9e3.tar.gz
nixpkgs-743d01161616720fb668eae2ea7199edb37af9e3.tar.bz2
nixpkgs-743d01161616720fb668eae2ea7199edb37af9e3.tar.lz
nixpkgs-743d01161616720fb668eae2ea7199edb37af9e3.tar.xz
nixpkgs-743d01161616720fb668eae2ea7199edb37af9e3.tar.zst
nixpkgs-743d01161616720fb668eae2ea7199edb37af9e3.zip
hivemind: 1.0.6 -> 1.1.0 (#157994)
Update to latest release: https://github.com/DarthSim/hivemind/releases/tag/v1.1.0
-rw-r--r--pkgs/applications/misc/hivemind/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/misc/hivemind/default.nix b/pkgs/applications/misc/hivemind/default.nix
index 6ada1fd749b..0562e1d52d9 100644
--- a/pkgs/applications/misc/hivemind/default.nix
+++ b/pkgs/applications/misc/hivemind/default.nix
@@ -1,9 +1,8 @@
-{ lib, buildGoPackage, fetchFromGitHub, runtimeShell }:
+{ lib, buildGoModule, fetchFromGitHub, runtimeShell }:
 
-buildGoPackage rec {
+buildGoModule rec {
   pname = "hivemind";
-  version = "1.0.6";
-  goPackagePath = "github.com/DarthSim/hivemind";
+  version = "1.1.0";
 
   postPatch = ''
     substituteInPlace process.go --replace \"/bin/sh\" \"${runtimeShell}\"
@@ -13,8 +12,9 @@ buildGoPackage rec {
     owner = "DarthSim";
     repo = "hivemind";
     rev = "v${version}";
-    sha256 = "0afcnd03wsdphbbpha65rv5pnv0x6ldnnm6rnv1m6xkkywgnzx95";
+    sha256 = "YUR9OwRuH1xSPs8iTsSIjLCt2TyYH357IAYULGTyYUc=";
   };
+  vendorSha256 = "KweFhT8Zueg45Q/vw3kNET35hB+0WbUPfz0FYaAiIA8=";
 
   meta = with lib; {
     homepage = "https://github.com/DarthSim/";