Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
feat: update versioning to dynamically read from Cargo.toml
  • Loading branch information
LargeModGames committed Mar 13, 2026
commit 73c50f218a0e435a0da7ad691077697e23d74159
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
packages = rec {
default = pkgs.rustPlatform.buildRustPackage {
pname = "spotatui";
version = "0.37.2";
version = "${(builtins.fromTOML (builtins.readFile ./Cargo.toml)).package.version}-${self.shortRev or "dirty"}";
src = self;

cargoLock = {
Expand Down
Loading