From c53840067c489898bf34229924de5f0350bd7eee Mon Sep 17 00:00:00 2001 From: "Ian M. Jones" Date: Mon, 6 Jun 2022 19:24:28 +0100 Subject: [PATCH] juju: 2.9.27 -> 2.9.31 --- pkgs/applications/networking/juju/default.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/juju/default.nix b/pkgs/applications/networking/juju/default.nix index b22cea57987..ef7b33061dc 100644 --- a/pkgs/applications/networking/juju/default.nix +++ b/pkgs/applications/networking/juju/default.nix @@ -2,20 +2,24 @@ buildGoModule rec { pname = "juju"; - version = "2.9.27"; + version = "2.9.31"; src = fetchFromGitHub { owner = "juju"; repo = "juju"; rev = "juju-${version}"; - sha256 = "sha256-4G+veQkPY6n/uRMsBWQgig/6IDc0Y2nXDpMUyC1ShF4="; + sha256 = "sha256-vRe7H7wtZUTsAJa6QVP+BTDDkJsfgIlBVpGcvtU1e0g="; }; - vendorSha256 = "sha256-Ieaf+Qp/7/6nv2ftHY3pbtOg+t7dYAuMv4BvhRaAZ9E="; + vendorSha256 = "sha256-Tx5RazLrNZ5GMRu4/jKhuNN7m1mQw4V7TBcIed/Gssg="; # Disable tests because it attempts to use a mongodb instance doCheck = false; + subPackages = [ + "cmd/juju" + ]; + meta = with lib; { description = "Open source modelling tool for operating software in the cloud"; homepage = "https://juju.is";