.. [no ci]

This commit is contained in:
sxyazi 2023-10-22 13:12:35 +08:00
parent b207eb4db5
commit 3ab6c7b337
No known key found for this signature in database
6 changed files with 15 additions and 15 deletions

View file

@ -27,7 +27,7 @@
let let
pkgs = import nixpkgs { inherit system overlays; }; pkgs = import nixpkgs { inherit system overlays; };
versionSuffix = "pre${builtins.substring 0 8 (self.lastModifiedDate or self.lastModified or "19700101")}_${self.shortRev or "dirty"}"; versionSuffix = "pre${builtins.substring 0 8 (self.lastModifiedDate or self.lastModified or "19700101")}_${self.shortRev or "dirty"}";
version = (builtins.fromTOML (builtins.readFile ./app/Cargo.toml)).package.version + versionSuffix; version = (builtins.fromTOML (builtins.readFile ./yazi-fm/Cargo.toml)).package.version + versionSuffix;
yazi = pkgs.callPackage ./nix/yazi.nix { inherit version; }; yazi = pkgs.callPackage ./nix/yazi.nix { inherit version; };
in in
{ {

View file

@ -4,8 +4,8 @@ version = "0.1.5"
edition = "2021" edition = "2021"
[dependencies] [dependencies]
yazi-config = { path = "../yazi-config" } yazi-config = { path = "../yazi-config", version = "0.1.5" }
yazi-shared = { path = "../yazi-shared" } yazi-shared = { path = "../yazi-shared", version = "0.1.5" }
# External dependencies # External dependencies
anyhow = "^1" anyhow = "^1"

View file

@ -4,7 +4,7 @@ version = "0.1.5"
edition = "2021" edition = "2021"
[dependencies] [dependencies]
yazi-shared = { path = "../yazi-shared" } yazi-shared = { path = "../yazi-shared", version = "0.1.5" }
# External dependencies # External dependencies
anyhow = "^1" anyhow = "^1"

View file

@ -4,9 +4,9 @@ version = "0.1.5"
edition = "2021" edition = "2021"
[dependencies] [dependencies]
yazi-adaptor = { path = "../yazi-adaptor" } yazi-adaptor = { path = "../yazi-adaptor", version = "0.1.5" }
yazi-config = { path = "../yazi-config" } yazi-config = { path = "../yazi-config", version = "0.1.5" }
yazi-shared = { path = "../yazi-shared" } yazi-shared = { path = "../yazi-shared", version = "0.1.5" }
# External dependencies # External dependencies
anyhow = "^1" anyhow = "^1"

View file

@ -4,11 +4,11 @@ version = "0.1.5"
edition = "2021" edition = "2021"
[dependencies] [dependencies]
yazi-adaptor = { path = "../yazi-adaptor" } yazi-adaptor = { path = "../yazi-adaptor", version = "0.1.5" }
yazi-config = { path = "../yazi-config" } yazi-config = { path = "../yazi-config", version = "0.1.5" }
yazi-core = { path = "../yazi-core" } yazi-core = { path = "../yazi-core", version = "0.1.5" }
yazi-plugin = { path = "../yazi-plugin" } yazi-plugin = { path = "../yazi-plugin", version = "0.1.5" }
yazi-shared = { path = "../yazi-shared" } yazi-shared = { path = "../yazi-shared", version = "0.1.5" }
# External dependencies # External dependencies
ansi-to-tui = "^3" ansi-to-tui = "^3"

View file

@ -4,9 +4,9 @@ version = "0.1.5"
edition = "2021" edition = "2021"
[dependencies] [dependencies]
yazi-config = { path = "../yazi-config" } yazi-config = { path = "../yazi-config", version = "0.1.5" }
yazi-core = { path = "../yazi-core" } yazi-core = { path = "../yazi-core", version = "0.1.5" }
yazi-shared = { path = "../yazi-shared" } yazi-shared = { path = "../yazi-shared", version = "0.1.5" }
# External dependencies # External dependencies
ansi-to-tui = "^3" ansi-to-tui = "^3"