mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
ctlptl: init at 0.8.6
This commit is contained in:
parent
7d9947fdb4
commit
6650126915
2 changed files with 30 additions and 0 deletions
28
pkgs/development/tools/ctlptl/default.nix
Normal file
28
pkgs/development/tools/ctlptl/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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"; };
|
||||
|
|
Loading…
Reference in a new issue