3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/juju/default.nix

26 lines
655 B
Nix
Raw Normal View History

2021-07-05 16:36:52 +01:00
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "juju";
2021-08-03 09:20:09 +01:00
version = "2.9.10";
2021-07-05 16:36:52 +01:00
src = fetchFromGitHub {
owner = "juju";
repo = "juju";
rev = "juju-${version}";
2021-08-03 09:20:09 +01:00
sha256 = "sha256-2gCJ6aN6uN0KtOVddLDry4pLhScSh4JHmdsFws59phk=";
2021-07-05 16:36:52 +01:00
};
2021-08-03 09:20:09 +01:00
vendorSha256 = "sha256-vFO3Rv+7CLIkl1qS4zp177GmerewfgmyjxEbzdt/RsE=";
2021-07-05 16:36:52 +01:00
# 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 ];
};
}