ctlptl: init at 0.8.6

This commit is contained in:
Shaw Vrana 2022-04-05 14:30:45 -07:00 committed by zowoq
parent 7d9947fdb4
commit 6650126915
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "ctlptl";
version = "0.8.6";
src = fetchFromGitHub {
owner = "tilt-dev";
repo = pname;
rev = "v${version}";
sha256 = "sha256-FJtp4g4kIkXFYvYcM9yF3BY6tgHmip11/oIyMSfTwqM=";
};
vendorSha256 = "sha256-s+Cc7pG/GLK0ZhXX/wK7jMNcDIeu/Am2vCgzrNXKpdw=";
ldflags = [
"-s"
"-w"
"-X main.version=${version}"
];
meta = with lib; {
description = "CLI for declaratively setting up local Kubernetes clusters";
homepage = "https://github.com/tilt-dev/ctlptl";
license = licenses.asl20;
maintainers = with maintainers; [ svrana ];
};
}

View File

@ -5384,6 +5384,8 @@ with pkgs;
cron = callPackage ../tools/system/cron { };
ctlptl = callPackage ../development/tools/ctlptl { };
snooze = callPackage ../tools/system/snooze { };
cudaPackages_10_0 = callPackage ./cuda-packages.nix { cudaVersion = "10.0"; };