about summary refs log tree commit diff
path: root/pkgs/development/tools/conftest
diff options
context:
space:
mode:
author06kellyjac <dev@j-k.io>2020-10-04 14:58:32 +0100
committer06kellyjac <dev@j-k.io>2020-10-04 14:58:32 +0100
commit94fd56594a6543fac73e972952d87ed635cfbda4 (patch)
tree323d4adb4f1a9093ec32f40bda238ff753a21323 /pkgs/development/tools/conftest
parent024f5b30e0a3231dbe99c30192f92ba0058d95f5 (diff)
conftest: add longDescription
Diffstat (limited to 'pkgs/development/tools/conftest')
-rw-r--r--pkgs/development/tools/conftest/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/development/tools/conftest/default.nix b/pkgs/development/tools/conftest/default.nix
index 4f2ee6e612d05..c49cd8685fb67 100644
--- a/pkgs/development/tools/conftest/default.nix
+++ b/pkgs/development/tools/conftest/default.nix
@@ -24,6 +24,16 @@ buildGoModule rec {
 
   meta = with lib; {
     description = "Write tests against structured configuration data";
+    longDescription = ''
+      Conftest helps you write tests against structured configuration data.
+      Using Conftest you can write tests for your Kubernetes configuration,
+      Tekton pipeline definitions, Terraform code, Serverless configs or any
+      other config files.
+
+      Conftest uses the Rego language from Open Policy Agent for writing the
+      assertions. You can read more about Rego in 'How do I write policies' in
+      the Open Policy Agent documentation.
+    '';
     inherit (src.meta) homepage;
     license = licenses.asl20;
     maintainers = with maintainers; [ yurrriq ];