levant: init at 0.3.0
This commit is contained in:
parent
46bc8d3b10
commit
d372457bf0
2 changed files with 30 additions and 0 deletions
28
pkgs/applications/networking/cluster/levant/default.nix
Normal file
28
pkgs/applications/networking/cluster/levant/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "levant";
|
||||||
|
version = "0.3.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "hashicorp";
|
||||||
|
repo = "levant";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "9M7a4i+DPKb1H9jOEVAvhvYxGwtj3dK/40n4GSy4Rqo=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "5JlrgmIfhX0rPR72sUkFcofw/iIbIaca359GN9C9dhU=";
|
||||||
|
|
||||||
|
runVend = true;
|
||||||
|
|
||||||
|
# The tests try to connect to a Nomad cluster.
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "An open source templating and deployment tool for HashiCorp Nomad jobs";
|
||||||
|
homepage = "https://github.com/hashicorp/levant";
|
||||||
|
license = licenses.mpl20;
|
||||||
|
maintainers = with maintainers; [ max-niederman ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
|
@ -25659,6 +25659,8 @@ with pkgs;
|
||||||
|
|
||||||
leftwm = callPackage ../applications/window-managers/leftwm { };
|
leftwm = callPackage ../applications/window-managers/leftwm { };
|
||||||
|
|
||||||
|
levant = callPackage ../applications/networking/cluster/levant { };
|
||||||
|
|
||||||
lwm = callPackage ../applications/window-managers/lwm { };
|
lwm = callPackage ../applications/window-managers/lwm { };
|
||||||
|
|
||||||
marker = callPackage ../applications/editors/marker { };
|
marker = callPackage ../applications/editors/marker { };
|
||||||
|
|
Loading…
Reference in a new issue