mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
62 lines
1.5 KiB
Nix
62 lines
1.5 KiB
Nix
{ buildGoModule, fetchFromGitHub, lib, installShellFiles }:
|
|
|
|
buildGoModule rec {
|
|
pname = "tanka";
|
|
version = "0.28.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "grafana";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-KXOH2CSGG0esgpgU85mszoYnYHc9XhdYoAtr3DFR30g=";
|
|
};
|
|
|
|
vendorHash = "sha256-MJwizWd2X4YE0QhwCxw3FX7+Z5HxakYjBttu8KGLsWo=";
|
|
|
|
doCheck = false;
|
|
# Required for versions >= 0.28 as they introduce a gowork.sum file. This is only used for tests so we can safely disable GOWORK
|
|
env.GOWORK = "off";
|
|
|
|
subPackages = [ "cmd/tk" ];
|
|
|
|
ldflags = [ "-s" "-w" "-extldflags '-static'" "-X github.com/grafana/tanka/pkg/tanka.CurrentVersion=v${version}" ];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = ''
|
|
echo "complete -C $out/bin/tk tk" > tk.bash
|
|
|
|
cat >tk.fish <<EOF
|
|
|
|
function __complete_tk
|
|
set -lx COMP_LINE (commandline -cp)
|
|
test -z (commandline -ct)
|
|
and set COMP_LINE "\$COMP_LINE "
|
|
$out/bin/tk
|
|
end
|
|
complete -f -c tk -a "(__complete_tk)"
|
|
|
|
EOF
|
|
|
|
cat >tk.zsh <<EOF
|
|
#compdef tk
|
|
autoload -U +X bashcompinit && bashcompinit
|
|
complete -o nospace -C $out/bin/tk tk
|
|
EOF
|
|
|
|
installShellCompletion \
|
|
--cmd tk \
|
|
--bash tk.bash \
|
|
--fish tk.fish \
|
|
--zsh tk.zsh
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Flexible, reusable and concise configuration for Kubernetes";
|
|
homepage = "https://tanka.dev";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ mikefaille ];
|
|
mainProgram = "tk";
|
|
};
|
|
}
|