From 7983beaea35815c7f9126c2f5acea42fd1f09f5c Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Mon, 7 Nov 2022 23:36:54 +0300 Subject: [PATCH] chore: change nix version format --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index ce44c43..92284e5 100644 --- a/flake.nix +++ b/flake.nix @@ -9,7 +9,7 @@ inherit (builtins) fromTOML readFile substring; cargoToml = fromTOML (readFile ./Cargo.toml); - version = "${cargoToml.package.version}_${substring 0 8 self.lastModifiedDate}_${self.shortRev or "dirty"}"; + version = "${cargoToml.package.version}+${substring 0 8 self.lastModifiedDate}.${self.shortRev or "dirty"}"; mkVnetod = { lib, rustPlatform, ... }: rustPlatform.buildRustPackage {