about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMarek Mahut <marek.mahut@gmail.com>2020-01-12 23:36:40 +0100
committerGitHub <noreply@github.com>2020-01-12 23:36:40 +0100
commit6438ed6bdcc7195c0f3b6861e462885f76e2d542 (patch)
treeffbfdf24bd1654973cf075c9c429908554b13c54
parent9e9a1050e5daff3924bdcf6c1db1669acf8bbbae (diff)
parentacd334c5b6ff10c78afc8ed9144dc02d2a9ce11f (diff)
downloadnixlib-6438ed6bdcc7195c0f3b6861e462885f76e2d542.tar
nixlib-6438ed6bdcc7195c0f3b6861e462885f76e2d542.tar.gz
nixlib-6438ed6bdcc7195c0f3b6861e462885f76e2d542.tar.bz2
nixlib-6438ed6bdcc7195c0f3b6861e462885f76e2d542.tar.lz
nixlib-6438ed6bdcc7195c0f3b6861e462885f76e2d542.tar.xz
nixlib-6438ed6bdcc7195c0f3b6861e462885f76e2d542.tar.zst
nixlib-6438ed6bdcc7195c0f3b6861e462885f76e2d542.zip
Merge pull request #77368 from saschagrunert/cni
cni-plugins: v0.8.3 -> v0.8.4
-rw-r--r--pkgs/applications/networking/cluster/cni/plugins.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/cluster/cni/plugins.nix b/pkgs/applications/networking/cluster/cni/plugins.nix
index d0186fb9b4c0..39c3b9f65072 100644
--- a/pkgs/applications/networking/cluster/cni/plugins.nix
+++ b/pkgs/applications/networking/cluster/cni/plugins.nix
@@ -1,13 +1,13 @@
 { stdenv, lib, fetchFromGitHub, go, removeReferencesTo, buildGoPackage }:
 buildGoPackage rec {
   pname = "cni-plugins";
-  version = "0.8.3";
+  version = "0.8.4";
 
   src = fetchFromGitHub {
     owner = "containernetworking";
     repo = "plugins";
     rev = "v${version}";
-    sha256 = "0dc4fs08x4x518yhgvq3drjvansnc0cb8rm4h5wiw7k3whjii3cd";
+    sha256 = "02kz6y3klhbriybsskn4hmldwli28cycnp2klsm2x0y9c73iczdp";
   };
 
   goDeps = ./plugins-deps.nix;