summary refs log tree commit diff
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-06-29 10:34:26 +0300
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-06-29 10:34:26 +0300
commit9b6f42b1e302e4c0b12cbe88d0e52ebe95c38ce4 (patch)
tree5616b218fbceeeeda8f53b21f0fdd7e44364e78d
parent1747f3207255f305db89f10b51df2f9c962e2f43 (diff)
downloadnixpkgs-9b6f42b1e302e4c0b12cbe88d0e52ebe95c38ce4.tar
nixpkgs-9b6f42b1e302e4c0b12cbe88d0e52ebe95c38ce4.tar.gz
nixpkgs-9b6f42b1e302e4c0b12cbe88d0e52ebe95c38ce4.tar.bz2
nixpkgs-9b6f42b1e302e4c0b12cbe88d0e52ebe95c38ce4.tar.lz
nixpkgs-9b6f42b1e302e4c0b12cbe88d0e52ebe95c38ce4.tar.xz
nixpkgs-9b6f42b1e302e4c0b12cbe88d0e52ebe95c38ce4.tar.zst
nixpkgs-9b6f42b1e302e4c0b12cbe88d0e52ebe95c38ce4.zip
flannel: fix version
-rw-r--r--pkgs/tools/networking/flannel/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/networking/flannel/default.nix b/pkgs/tools/networking/flannel/default.nix
index 1e297d2ece9..0a4da671197 100644
--- a/pkgs/tools/networking/flannel/default.nix
+++ b/pkgs/tools/networking/flannel/default.nix
@@ -14,7 +14,7 @@ buildGoModule rec {
     sha256 = "sha256-LwIGY74iH/qD8XpTw3wRJC0DVsFj1qLInX0i5Zorvew=";
   };
 
-  ldflags = [ "-X github.com/flannel-io/flannel/version.Version=${rev}" ];
+  ldflags = [ "-X github.com/flannel-io/flannel/pkg/version.Version=${rev}" ];
 
   # TestRouteCache/TestV6RouteCache fail with "Failed to create newns: operation not permitted"
   doCheck = false;