diff --git a/flake.nix b/flake.nix
index 486127dfa5ca37cb2354731c32c142ca5547ee63..33094b2f140ea149d6c0e82f16bddb57ebb59466 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;