about summary refs log tree commit diff
path: root/pkgs/applications/networking/juju
diff options
context:
space:
mode:
authorAlex Zero <joseph@marsden.space>2021-07-05 16:36:52 +0100
committerAlex Zero <joseph@marsden.space>2021-07-05 18:01:29 +0100
commit91ca0b9602e1e090fb6281bab7a02fc25815e540 (patch)
treea5674064fd74f1f78ef756aa15efb1b766375ae1 /pkgs/applications/networking/juju
parentb3f09a606465f9ce078994054fc7ff0c7dbeb4ca (diff)
juju: init at 2.8.7
Diffstat (limited to 'pkgs/applications/networking/juju')
-rw-r--r--pkgs/applications/networking/juju/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/networking/juju/default.nix b/pkgs/applications/networking/juju/default.nix
new file mode 100644
index 0000000000000..b4de49730fe8d
--- /dev/null
+++ b/pkgs/applications/networking/juju/default.nix
@@ -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 ];
+  };
+}