nixpkgs/pkgs/applications/networking/juju/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
694 B
Nix
Raw Normal View History

2021-07-05 15:36:52 +00:00
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "juju";
2022-06-06 18:24:28 +00:00
version = "2.9.31";
2021-07-05 15:36:52 +00:00
src = fetchFromGitHub {
owner = "juju";
repo = "juju";
rev = "juju-${version}";
2022-06-06 18:24:28 +00:00
sha256 = "sha256-vRe7H7wtZUTsAJa6QVP+BTDDkJsfgIlBVpGcvtU1e0g=";
2021-07-05 15:36:52 +00:00
};
2022-06-06 18:24:28 +00:00
vendorSha256 = "sha256-Tx5RazLrNZ5GMRu4/jKhuNN7m1mQw4V7TBcIed/Gssg=";
2021-07-05 15:36:52 +00:00
# Disable tests because it attempts to use a mongodb instance
doCheck = false;
2022-06-06 18:24:28 +00:00
subPackages = [
"cmd/juju"
];
2021-07-05 15:36:52 +00:00
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 ];
};
}