From a74b3a42e13953ae91474140ecd82a888c04d40f Mon Sep 17 00:00:00 2001
From: Volker Schukai <volker.schukai@schukai.com>
Date: Sat, 5 Aug 2023 22:31:37 +0200
Subject: [PATCH] chore: Fix quotes in `flake.nix` for release values

- Fix the quotes in `flake.nix` for `ldflags` by adding escaped quotes around the values
---
 flake.nix | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/flake.nix b/flake.nix
index fd7e322..77b7358 100644
--- a/flake.nix
+++ b/flake.nix
@@ -64,8 +64,8 @@
             vendorSha256 = "sha256-81IBG8H1jsYKD+tmFeCpAWFdz6cuQDt9r+FV56xboBU=";
             
             ldflags = [
-                 "-X release.version=${version}"
-                 "-X release.build=${build}"
+                 "-X \"release.version=${version}\""
+                 "-X \"release.build=${build}\""
                       ];
                       
             buildInputs = [ versionTool.defaultPackage.${system} ]; 
-- 
GitLab