about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-03-08 00:48:25 -0800
committerRyan Mulligan <ryan@ryantm.com>2018-03-08 00:48:25 -0800
commit0d961f02d234e3af3e376533b56dc4a4671d79aa (patch)
tree9e771babe136499f415ab23e4d5da1c9f99be5d5 /pkgs/applications
parentf93f9f6025f703978423c6d7d9da59c27e120487 (diff)
downloadnixlib-0d961f02d234e3af3e376533b56dc4a4671d79aa.tar
nixlib-0d961f02d234e3af3e376533b56dc4a4671d79aa.tar.gz
nixlib-0d961f02d234e3af3e376533b56dc4a4671d79aa.tar.bz2
nixlib-0d961f02d234e3af3e376533b56dc4a4671d79aa.tar.lz
nixlib-0d961f02d234e3af3e376533b56dc4a4671d79aa.tar.xz
nixlib-0d961f02d234e3af3e376533b56dc4a4671d79aa.tar.zst
nixlib-0d961f02d234e3af3e376533b56dc4a4671d79aa.zip
cni: 0.5.2 -> 0.6.0
Semi-automatic update. These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 0.6.0 with grep in /nix/store/20rzgnqnxfx21j49wr48pd4p9wb0ai5z-cni-0.6.0
- found 0.6.0 in filename of file in /nix/store/20rzgnqnxfx21j49wr48pd4p9wb0ai5z-cni-0.6.0
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/cluster/cni/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/cluster/cni/default.nix b/pkgs/applications/networking/cluster/cni/default.nix
index a7205f1bc7af..3ce056c1e11e 100644
--- a/pkgs/applications/networking/cluster/cni/default.nix
+++ b/pkgs/applications/networking/cluster/cni/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   name = "cni-${version}";
-  version = "0.5.2";
+  version = "0.6.0";
 
   src = fetchFromGitHub {
     owner = "containernetworking";
     repo = "cni";
     rev = "v${version}";
-    sha256 = "0n2sc5xf1h0i54am80kj7imrvawddn0kxvgi65w0194dpmyrg5al";
+    sha256 = "00ajs2r5r2z3l0vqwxrcwhjfc9px12qbcv5vnvs2mdipvvls1y2y";
   };
 
   buildInputs = [ go ];