biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / conftest / default.nix
blob5fe017565f1266c37c31310dfbe94cf1335748c4
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 , installShellFiles
5 }:
7 buildGoModule rec {
8   pname = "conftest";
9   version = "0.51.0";
11   src = fetchFromGitHub {
12     owner = "open-policy-agent";
13     repo = "conftest";
14     rev = "refs/tags/v${version}";
15     hash = "sha256-1jMVb1Hip7ljmt4WtFg3Qa2/rse2sjISTe3SUS5UCTo=";
16   };
17   vendorHash = "sha256-Yw5p2mTTkYvRjeuF9owirohyClSS3j1gKVg8Ma2NIa8=";
19   ldflags = [
20     "-s"
21     "-w"
22     "-X github.com/open-policy-agent/conftest/internal/commands.version=${version}"
23   ];
25   nativeBuildInputs = [
26     installShellFiles
27   ];
29   preCheck = ''
30     export HOME="$(mktemp -d)"
31   '';
33   postInstall = ''
34     installShellCompletion --cmd conftest \
35       --bash <($out/bin/conftest completion bash) \
36       --fish <($out/bin/conftest completion fish) \
37       --zsh <($out/bin/conftest completion zsh)
38   '';
40   doInstallCheck = true;
41   installCheckPhase = ''
42     export HOME="$(mktemp -d)"
43     $out/bin/conftest --version | grep ${version} > /dev/null
44   '';
46   meta = with lib; {
47     description = "Write tests against structured configuration data";
48     mainProgram = "conftest";
49     downloadPage = "https://github.com/open-policy-agent/conftest";
50     homepage = "https://www.conftest.dev";
51     changelog = "https://github.com/open-policy-agent/conftest/releases/tag/v${version}";
52     license = licenses.asl20;
53     longDescription = ''
54       Conftest helps you write tests against structured configuration data.
55       Using Conftest you can write tests for your Kubernetes configuration,
56       Tekton pipeline definitions, Terraform code, Serverless configs or any
57       other config files.
59       Conftest uses the Rego language from Open Policy Agent for writing the
60       assertions. You can read more about Rego in 'How do I write policies' in
61       the Open Policy Agent documentation.
62     '';
63     maintainers = with maintainers; [ jk yurrriq ];
64   };