summary refs log tree commit diff
path: root/pkgs/tools/networking/flannel
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2021-09-21 12:36:19 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2021-09-21 18:59:50 +1000
commite8c3e05e11679adb11e331a47337d43c4c031514 (patch)
tree2d4c9587e2a48b2c74a8a200a11ed041294457fe /pkgs/tools/networking/flannel
parentdf67b776706cff7fac75cf4c2782c001444fa646 (diff)
downloadnixpkgs-e8c3e05e11679adb11e331a47337d43c4c031514.tar
nixpkgs-e8c3e05e11679adb11e331a47337d43c4c031514.tar.gz
nixpkgs-e8c3e05e11679adb11e331a47337d43c4c031514.tar.bz2
nixpkgs-e8c3e05e11679adb11e331a47337d43c4c031514.tar.lz
nixpkgs-e8c3e05e11679adb11e331a47337d43c4c031514.tar.xz
nixpkgs-e8c3e05e11679adb11e331a47337d43c4c031514.tar.zst
nixpkgs-e8c3e05e11679adb11e331a47337d43c4c031514.zip
cni-plugin-flannel: unstable-2021-09-10 -> 1.0
https://github.com/flannel-io/cni-plugin/releases/tag/v1.0
Diffstat (limited to 'pkgs/tools/networking/flannel')
-rw-r--r--pkgs/tools/networking/flannel/plugin.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/networking/flannel/plugin.nix b/pkgs/tools/networking/flannel/plugin.nix
index 657be79b61b..40d0fa9ecc5 100644
--- a/pkgs/tools/networking/flannel/plugin.nix
+++ b/pkgs/tools/networking/flannel/plugin.nix
@@ -1,14 +1,14 @@
 { lib, buildGoModule, fetchFromGitHub }:
 
-buildGoModule {
+buildGoModule rec {
   pname = "cni-plugin-flannel";
-  version = "unstable-2021-09-10";
+  version = "1.0";
 
   src = fetchFromGitHub {
     owner = "flannel-io";
     repo = "cni-plugin";
-    rev = "8ce83510da59681da905dccb8364af9472cac341";
-    sha256 = "sha256-x6F8n+IJ1pZdbDwniWWmoGKgQm235ax3mbOcbYqWLCs=";
+    rev = "v${version}";
+    sha256 = "sha256-s2gibebXTqM/12nDHwc89geWxA6gZi9/if5VnUFoTDE=";
   };
 
   vendorSha256 = "sha256-TLAwE3pTnJYOi1AsOQfsG6t3xLKOah/7DvYjsqyltKs=";