Merge pull request #246968 from otavio/sh-0_12_4

shellhub-agent: 0.12.3 -> 0.12.4

authored by

Thiago Kenji Okada and committed by
GitHub
38a8ca82 c1613407

+5 -8
+5 -8
pkgs/applications/networking/shellhub-agent/default.nix
··· 1 { lib 2 , buildGoModule 3 , fetchFromGitHub 4 - , gitUpdater 5 , makeWrapper 6 , openssh 7 , libxcrypt ··· 11 12 buildGoModule rec { 13 pname = "shellhub-agent"; 14 - version = "0.12.3"; 15 16 src = fetchFromGitHub { 17 owner = "shellhub-io"; 18 repo = "shellhub"; 19 rev = "v${version}"; 20 - hash = "sha256-WKMy2JttXFRcW1yb5aQ6xe8BoSoN65K8Hlmac62+QPc="; 21 }; 22 23 modRoot = "./agent"; 24 25 - vendorHash = "sha256-BqzpQcL3U6SIrDW5NfBG0D2zyvv1zNu7uoOBYmKbF4Y="; 26 27 ldflags = [ "-s" "-w" "-X main.AgentVersion=v${version}" ]; 28 29 passthru = { 30 - updateScript = gitUpdater { 31 - rev-prefix = "v"; 32 - ignoredVersions = ".(rc|beta).*"; 33 - }; 34 35 tests.version = testers.testVersion { 36 package = shellhub-agent;
··· 1 { lib 2 , buildGoModule 3 , fetchFromGitHub 4 + , nix-update-script 5 , makeWrapper 6 , openssh 7 , libxcrypt ··· 11 12 buildGoModule rec { 13 pname = "shellhub-agent"; 14 + version = "0.12.4"; 15 16 src = fetchFromGitHub { 17 owner = "shellhub-io"; 18 repo = "shellhub"; 19 rev = "v${version}"; 20 + hash = "sha256-OvXbc3feCatyubbRZlaiXvGP59ApyAS0b0Z6SeJsZnE="; 21 }; 22 23 modRoot = "./agent"; 24 25 + vendorHash = "sha256-qQRi4GeepRpYPhE5ftUj01tMCqBh5txbizfkVXmrgOQ="; 26 27 ldflags = [ "-s" "-w" "-X main.AgentVersion=v${version}" ]; 28 29 passthru = { 30 + updateScript = nix-update-script { }; 31 32 tests.version = testers.testVersion { 33 package = shellhub-agent;