juju: init at 2.8.7

This commit is contained in:
Alex Zero 2021-07-05 16:36:52 +01:00
parent b3f09a6064
commit 91ca0b9602
No known key found for this signature in database
GPG Key ID: 2E54D6D25B06F1DB
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "juju";
version = "2.8.7";
src = fetchFromGitHub {
owner = "juju";
repo = "juju";
rev = "juju-${version}";
sha256 = "sha256-ZiG+LMeQboFxaLIBSHjRNe5tt8bEguYXQp3nhkoMpek=";
};
vendorSha256 = "sha256-5R3TmwOzHgdEQhS4B4Bb0InghaEhUVxDSl7oZl3aNZ4=";
# Disable tests because it attempts to use a mongodb instance
doCheck = false;
meta = with lib; {
description = "Open source modelling tool for operating software in the cloud";
homepage = "https://juju.is";
license = licenses.mit;
maintainers = with maintainers; [ citadelcore ];
};
}

View File

@ -20618,6 +20618,8 @@ in
jool-cli = callPackage ../os-specific/linux/jool/cli.nix { };
juju = callPackage ../applications/networking/juju { };
jujuutils = callPackage ../os-specific/linux/jujuutils { };
kbd = callPackage ../os-specific/linux/kbd { };