about summary refs log tree commit diff
path: root/pkgs/tools/admin
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-07-13 09:46:03 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2019-07-13 09:46:03 +0200
commit4aee94629dce852c6021f5ae8ce60de0508d7e37 (patch)
tree22b3f1398f6b0d6203baeddc86181eac89190d1f /pkgs/tools/admin
parentec7f569211091282410050e89e68832d4fe60528 (diff)
parent54065ae20d6c91cab54aa706d6e819baf673b80c (diff)
downloadnixlib-4aee94629dce852c6021f5ae8ce60de0508d7e37.tar
nixlib-4aee94629dce852c6021f5ae8ce60de0508d7e37.tar.gz
nixlib-4aee94629dce852c6021f5ae8ce60de0508d7e37.tar.bz2
nixlib-4aee94629dce852c6021f5ae8ce60de0508d7e37.tar.lz
nixlib-4aee94629dce852c6021f5ae8ce60de0508d7e37.tar.xz
nixlib-4aee94629dce852c6021f5ae8ce60de0508d7e37.tar.zst
nixlib-4aee94629dce852c6021f5ae8ce60de0508d7e37.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/tools/admin')
-rw-r--r--pkgs/tools/admin/clair/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/admin/clair/default.nix b/pkgs/tools/admin/clair/default.nix
index 8f521ed36d09..a6d8a046907f 100644
--- a/pkgs/tools/admin/clair/default.nix
+++ b/pkgs/tools/admin/clair/default.nix
@@ -2,15 +2,15 @@
 
 buildGoPackage rec {
   pname = "clair";
-  version = "2.0.7";
+  version = "2.0.8";
 
   goPackagePath = "github.com/coreos/clair";
 
   src = fetchFromGitHub {
     owner = "coreos";
-    repo = "clair";
+    repo = pname;
     rev = "v${version}";
-    sha256 = "0n4pxdw71hd1rxzgf422fvycpjkrxxnvcidys0hpjy7gs88zjz5x";
+    sha256 = "1gwn533fdz8daz1db7w7g7mhls7d5a4vndn47blkpbx2yxdwdh62";
   };
 
   nativeBuildInputs = [ makeWrapper ];
@@ -22,8 +22,8 @@ buildGoPackage rec {
 
   meta = with lib; {
     description = "Vulnerability Static Analysis for Containers";
-    homepage = https://github.com/coreos/clair;
+    homepage = "https://github.com/coreos/clair";
     license = licenses.asl20;
-    maintainers = [ maintainers.marsam ];
+    maintainers = with maintainers; [ marsam ];
   };
 }