nixpkgs/pkgs/by-name/da/datree/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
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.
2024-11-09 20:04:51 +08:00

60 lines
1.5 KiB
Nix

{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
, testers
, datree
}:
buildGoModule rec {
pname = "datree";
version = "1.9.19";
src = fetchFromGitHub {
owner = "datreeio";
repo = "datree";
rev = "refs/tags/${version}";
hash = "sha256-W1eX7eUMdPGbHA/f08xkG2EUeZmaunEAQn7/LRBe2nk=";
};
vendorHash = "sha256-+PQhuIO4KjXtW/ZcS0OamuOHzK7ZL+nwOBxeCRoXuKE=";
nativeBuildInputs = [ installShellFiles ];
ldflags = [
"-s"
"-w"
"-X github.com/datreeio/datree/cmd.CliVersion=${version}"
];
tags = [ "main" ];
postInstall = ''
installShellCompletion \
--cmd datree \
--bash <($out/bin/datree completion bash) \
--fish <($out/bin/datree completion fish) \
--zsh <($out/bin/datree completion zsh)
'';
passthru.tests.version = testers.testVersion {
package = datree;
command = "datree version";
};
meta = with lib; {
description = "CLI tool to ensure K8s manifests and Helm charts follow best practices";
mainProgram = "datree";
longDescription = ''
Datree provides an E2E policy enforcement solution to run automatic checks
for rule violations. Datree can be used on the command line, admission
webhook, or even as a kubectl plugin to run policies against Kubernetes
objects.
'';
homepage = "https://datree.io/";
changelog = "https://github.com/datreeio/datree/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ azahi jceb ];
};
}