Merge pull request #192241 from peterromfeldhk/peter-infrahq

infra: init at 0.15.1
This commit is contained in:
Pascal Bach 2022-09-21 21:22:14 +02:00 committed by GitHub
commit bf76a5254d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View 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 ];
};
}

View File

@ -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 { };