about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/qbec
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2021-08-23 14:55:51 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2021-08-26 21:35:06 +1000
commit3360a376cb905ac40e77d5424089d4893e9cd157 (patch)
tree2cc54b7d8ada53858c06632f888ce3e8e2d524ae /pkgs/applications/networking/cluster/qbec
parent13ea123c74cdcb33cdc376b16677044512615afa (diff)
buildGoModule: warn if buildFlagsArray is used
Diffstat (limited to 'pkgs/applications/networking/cluster/qbec')
-rw-r--r--pkgs/applications/networking/cluster/qbec/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/cluster/qbec/default.nix b/pkgs/applications/networking/cluster/qbec/default.nix
index 3c00bc1eedbef..f5fb6ee234c55 100644
--- a/pkgs/applications/networking/cluster/qbec/default.nix
+++ b/pkgs/applications/networking/cluster/qbec/default.nix
@@ -15,12 +15,12 @@ buildGoModule rec {
 
   doCheck = false;
 
-  ldflags = ''
+  ldflags = [
     "-s" "-w"
     "-X github.com/splunk/qbec/internal/commands.version=${version}"
     "-X github.com/splunk/qbec/internal/commands.commit=${src.rev}"
     "-X github.com/splunk/qbec/internal/commands.goVersion=${lib.getVersion go}"
-  '';
+  ];
 
   meta = with lib; {
     description = "Configure kubernetes objects on multiple clusters using jsonnet https://qbec.io";