biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / networking / juju / default.nix
blob1a914a065b09527a621ea70ed8bdc6844e518cb2
1 { lib, fetchFromGitHub, buildGoModule }:
3 buildGoModule rec {
4   pname = "juju";
5   version = "3.3.0";
7   src = fetchFromGitHub {
8     owner = "juju";
9     repo = "juju";
10     rev = "juju-${version}";
11     sha256 = "sha256-8VSSTeN4a1zvMi4L4dR3q+kWKgYq8Jg1jDvFjEBD7jI=";
12   };
14   vendorHash = "sha256-3hZywUpJe6g8IujbK0hcp12S6OKswLj/YYJGuPG06Es=";
16   # Disable tests because it attempts to use a mongodb instance
17   doCheck = false;
19   subPackages = [
20     "cmd/juju"
21   ];
23   meta = with lib; {
24     description = "Open source modelling tool for operating software in the cloud";
25     homepage = "https://juju.is";
26     license = licenses.mit;
27     maintainers = with maintainers; [ citadelcore ];
28     mainProgram = "juju";
29   };