about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster
diff options
context:
space:
mode:
authorSarah Brofeldt <sbrofeldt@gmail.com>2020-05-14 06:52:35 +0200
committerGitHub <noreply@github.com>2020-05-14 06:52:35 +0200
commit4c2a22850810fdd1789b9fd751cea2de761982ad (patch)
tree4b959c58a9d04840cb1b72145c65dcb41d1606da /pkgs/applications/networking/cluster
parentb87096c7fbe75d6e43e8e5110347afe962c69963 (diff)
parentdcb013d85c5a34c3fd578ad45fd20762862d31e3 (diff)
downloadnixlib-4c2a22850810fdd1789b9fd751cea2de761982ad.tar
nixlib-4c2a22850810fdd1789b9fd751cea2de761982ad.tar.gz
nixlib-4c2a22850810fdd1789b9fd751cea2de761982ad.tar.bz2
nixlib-4c2a22850810fdd1789b9fd751cea2de761982ad.tar.lz
nixlib-4c2a22850810fdd1789b9fd751cea2de761982ad.tar.xz
nixlib-4c2a22850810fdd1789b9fd751cea2de761982ad.tar.zst
nixlib-4c2a22850810fdd1789b9fd751cea2de761982ad.zip
Merge pull request #87778 from zowoq/cni
cni-plugins: 0.8.5 -> 0.8.6
Diffstat (limited to 'pkgs/applications/networking/cluster')
-rw-r--r--pkgs/applications/networking/cluster/cni/plugins.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/applications/networking/cluster/cni/plugins.nix b/pkgs/applications/networking/cluster/cni/plugins.nix
index d457ddd98bfe..34eb6a8ee28d 100644
--- a/pkgs/applications/networking/cluster/cni/plugins.nix
+++ b/pkgs/applications/networking/cluster/cni/plugins.nix
@@ -2,17 +2,21 @@
 
 buildGoPackage rec {
   pname = "cni-plugins";
-  version = "0.8.5";
+  version = "0.8.6";
 
   src = fetchFromGitHub {
     owner = "containernetworking";
     repo = "plugins";
     rev = "v${version}";
-    sha256 = "17c8pvpn0dpda6ah7irr9hhd8sk7mnm32zv72nc5pxg1xvfpaipi";
+    sha256 = "0f1cqxjf26sy1c4aw6y7pyd9lrz0vknby4q5j6xj77a1pab9073m";
   };
 
   goPackagePath = "github.com/containernetworking/plugins";
 
+  buildFlagsArray = [
+    "-ldflags=-X ${goPackagePath}/pkg/utils/buildversion.BuildVersion=${version}"
+  ];
+
   subPackages = [
     "plugins/ipam/dhcp"
     "plugins/ipam/host-local"