forked from mirrors/nixpkgs
Merge pull request #129279 from ArctarusLimited/init/juju
This commit is contained in:
commit
22ead69360
|
@ -1915,6 +1915,16 @@
|
|||
githubId = 3956062;
|
||||
name = "Simon Lackerbauer";
|
||||
};
|
||||
citadelcore = {
|
||||
email = "alex@arctarus.co.uk";
|
||||
github = "citadelcore";
|
||||
githubId = 5567402;
|
||||
name = "Alex Zero";
|
||||
keys = [{
|
||||
longkeyid = "rsa4096/0xA51550EDB450302C";
|
||||
fingerprint = "A0AA 4646 B8F6 9D45 4553 5A88 A515 50ED B450 302C";
|
||||
}];
|
||||
};
|
||||
cizra = {
|
||||
email = "todurov+nix@gmail.com";
|
||||
github = "cizra";
|
||||
|
|
25
pkgs/applications/networking/juju/default.nix
Normal file
25
pkgs/applications/networking/juju/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -20622,6 +20622,8 @@ in
|
|||
|
||||
jool-cli = callPackage ../os-specific/linux/jool/cli.nix { };
|
||||
|
||||
juju = callPackage ../applications/networking/juju { };
|
||||
|
||||
jujuutils = callPackage ../os-specific/linux/jujuutils { };
|
||||
|
||||
kbd = callPackage ../os-specific/linux/kbd { };
|
||||
|
|
Loading…
Reference in a new issue