about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-06-07 10:33:03 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-06-07 10:33:03 +0200
commit43e30b2f9bbdb3751f2b4ce7c2dbae9784e3a044 (patch)
tree8cc168a124d207a4a2dfc2a34c255ab68bc2652c
parentfix(back::config::BackRepositories): Strip a `.git` suffix from repo paths (diff)
downloadback-43e30b2f9bbdb3751f2b4ce7c2dbae9784e3a044.zip
build(nix/package.nix): Add correct version number
-rw-r--r--nix/package.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/package.nix b/nix/package.nix
index bbcf981..f65457b 100644
--- a/nix/package.nix
+++ b/nix/package.nix
@@ -15,7 +15,7 @@
 }:
 rustPlatform.buildRustPackage {
   pname = "back";
-  version = "1.0.0";
+  inherit ((builtins.fromTOML (builtins.readFile ../Cargo.toml)).package) version;
 
   src = lib.cleanSourceWith {
     src = lib.cleanSource ./..;