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

26 lines
654 B
Nix
Raw Normal View History

2021-07-05 15:36:52 +00:00
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "juju";
2021-07-27 04:21:57 +00:00
version = "2.9.9";
2021-07-05 15:36:52 +00:00
src = fetchFromGitHub {
owner = "juju";
repo = "juju";
rev = "juju-${version}";
2021-07-27 04:21:57 +00:00
sha256 = "sha256-36/fatztop2eB1z9DfnseQXw0Di3Wss72IfgdnKpsNU=";
2021-07-05 15:36:52 +00:00
};
2021-07-27 04:21:57 +00:00
vendorSha256 = "sha256-MH9lZNc9KevovZJCN2nClmqJbRSwYoQ4Jb0CXqBBUd0=";
2021-07-05 15:36:52 +00: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 ];
};
}