Merge pull request #192241 from peterromfeldhk/peter-infrahq
infra: init at 0.15.1
This commit is contained in:
commit
bf76a5254d
27
pkgs/tools/admin/infra/default.nix
Normal file
27
pkgs/tools/admin/infra/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "infra";
|
||||
version = "0.15.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "infrahq";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-4JygXCn+2FACflheiddLZhw53XANdvdzPeFw1YysmKI=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-Z+x1QStDfFkHoh2cWK2vk3whItpBVgqRdk3utp26BJc=";
|
||||
|
||||
subPackages = [ "." ];
|
||||
|
||||
ldflags = [ "-s" "-w" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Infra manages access to infrastructure such as Kubernetes";
|
||||
homepage = "https://github.com/infrahq/infra";
|
||||
changelog = "https://github.com/infrahq/infra/raw/v${version}/CHANGELOG.md";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ peterromfeldhk ];
|
||||
};
|
||||
}
|
@ -33531,6 +33531,8 @@ with pkgs;
|
||||
|
||||
icbm3d = callPackage ../games/icbm3d { };
|
||||
|
||||
infra = callPackage ../tools/admin/infra { };
|
||||
|
||||
infra-arcana = callPackage ../games/infra-arcana { };
|
||||
|
||||
ingen = callPackage ../applications/audio/ingen { };
|
||||
|
Loading…
Reference in New Issue
Block a user