From 59dfb9e902183bd76cb39ff550495e5fdd17c65d Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Fri, 8 Jul 2022 18:20:23 +0800 Subject: [PATCH] remove beta from version string --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index de3a43b4c..f78982474 100644 --- a/flake.nix +++ b/flake.nix @@ -21,7 +21,7 @@ artiqVersionMajor = 7; artiqVersionMinor = self.sourceInfo.revCount or 0; artiqVersionId = self.sourceInfo.shortRev or "unknown"; - artiqVersion = (builtins.toString artiqVersionMajor) + "." + (builtins.toString artiqVersionMinor) + "." + artiqVersionId + ".beta"; + artiqVersion = (builtins.toString artiqVersionMajor) + "." + (builtins.toString artiqVersionMinor) + "." + artiqVersionId; artiqRev = self.sourceInfo.rev or "unknown"; rustManifest = pkgs.fetchurl {