juju: init at 2.8.7
This commit is contained in:
parent
b3f09a6064
commit
91ca0b9602
25
pkgs/applications/networking/juju/default.nix
Normal file
25
pkgs/applications/networking/juju/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user