about summary refs log tree commit diff
path: root/pkgs/tools/admin
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-05-21 09:54:41 -0500
committerWael Nasreddine <wael.nasreddine@gmail.com>2019-05-21 07:54:41 -0700
commit52146c5484e2e113b81eec1c2ae5fd63d2b430aa (patch)
tree1cab9e2179d604bc8118b8913971f972334dd854 /pkgs/tools/admin
parent4e7693618cfbf901b176c2061bb885aa674f2169 (diff)
downloadnixlib-52146c5484e2e113b81eec1c2ae5fd63d2b430aa.tar
nixlib-52146c5484e2e113b81eec1c2ae5fd63d2b430aa.tar.gz
nixlib-52146c5484e2e113b81eec1c2ae5fd63d2b430aa.tar.bz2
nixlib-52146c5484e2e113b81eec1c2ae5fd63d2b430aa.tar.lz
nixlib-52146c5484e2e113b81eec1c2ae5fd63d2b430aa.tar.xz
nixlib-52146c5484e2e113b81eec1c2ae5fd63d2b430aa.tar.zst
nixlib-52146c5484e2e113b81eec1c2ae5fd63d2b430aa.zip
certigo: init at 1.11.0 (#61782)
Diffstat (limited to 'pkgs/tools/admin')
-rw-r--r--pkgs/tools/admin/certigo/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/tools/admin/certigo/default.nix b/pkgs/tools/admin/certigo/default.nix
new file mode 100644
index 000000000000..f53ef4a16fa6
--- /dev/null
+++ b/pkgs/tools/admin/certigo/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+  pname = "certigo";
+  version = "1.11.0";
+
+  src = fetchFromGitHub {
+    owner = "square";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "1vi4gn484kc7vyxnm2nislzy587h2h4gc8d197vslhyfygac9y7b";
+  };
+
+  modSha256 = "0x0iq3w5310dg8lp2kkw82iryfhs9p4707538f5dcxjsllpqvcvj";
+
+  meta = with stdenv.lib; {
+    description = "A utility to examine and validate certificates in a variety of formats";
+    homepage = "https://github.com/square/certigo";
+    license = licenses.asl20;
+    maintainers = [ maintainers.marsam ];
+  };
+}