levant: init at 0.3.0

authored by

Max Niederman and committed by
Jonathan Ringer
d372457b 46bc8d3b

+30
+28
pkgs/applications/networking/cluster/levant/default.nix
···
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "levant"; 5 + version = "0.3.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "hashicorp"; 9 + repo = "levant"; 10 + rev = "v${version}"; 11 + sha256 = "9M7a4i+DPKb1H9jOEVAvhvYxGwtj3dK/40n4GSy4Rqo="; 12 + }; 13 + 14 + vendorSha256 = "5JlrgmIfhX0rPR72sUkFcofw/iIbIaca359GN9C9dhU="; 15 + 16 + runVend = true; 17 + 18 + # The tests try to connect to a Nomad cluster. 19 + doCheck = false; 20 + 21 + meta = with lib; { 22 + description = "An open source templating and deployment tool for HashiCorp Nomad jobs"; 23 + homepage = "https://github.com/hashicorp/levant"; 24 + license = licenses.mpl20; 25 + maintainers = with maintainers; [ max-niederman ]; 26 + platforms = platforms.unix; 27 + }; 28 + }
+2
pkgs/top-level/all-packages.nix
··· 25659 25660 leftwm = callPackage ../applications/window-managers/leftwm { }; 25661 25662 lwm = callPackage ../applications/window-managers/lwm { }; 25663 25664 marker = callPackage ../applications/editors/marker { };
··· 25659 25660 leftwm = callPackage ../applications/window-managers/leftwm { }; 25661 25662 + levant = callPackage ../applications/networking/cluster/levant { }; 25663 + 25664 lwm = callPackage ../applications/window-managers/lwm { }; 25665 25666 marker = callPackage ../applications/editors/marker { };