From cb402569f6b6b125149ca63ce61b0fbd728762c7 Mon Sep 17 00:00:00 2001
From: Volker Schukai <volker.schukai@schukai.com>
Date: Mon, 17 Jul 2023 09:56:03 +0200
Subject: [PATCH] fix: name conflict

---
 flake.nix | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/flake.nix b/flake.nix
index 486127d..33094b2 100644
--- a/flake.nix
+++ b/flake.nix
@@ -16,7 +16,7 @@
 
       rootPath = ./.;
       releaseJson = builtins.fromJSON (builtins.readFile "${rootPath}/release.json");
-      version = releaseJson.version;  
+      pversion = releaseJson.version;  
 
 
       # System types to support.
@@ -39,7 +39,7 @@
         {
           version = pkgs.buildGoModule {
             pname = "version";
-            inherit version;
+            inherit pversion;
             # In 'nix develop', we don't need a copy of the source tree
             # in the Nix store.
             src = ././application/source;
-- 
GitLab