Merge pull request #298913 from emilioziniades/update-tmux-sessionizer

tmux-sessionizer: 0.4.0-unstable-2024-02-06 -> 0.4.2
This commit is contained in:
Nick Cao 2024-03-25 14:22:05 -04:00 committed by GitHub
commit 8a884818ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 8 deletions

View File

@ -7,28 +7,29 @@
, Security
, testers
, tmux-sessionizer
}: let
}:
let
name = "tmux-sessionizer";
# v0.4.1 is not released yet, but v0.4.0 has version discrepancy between Cargo.toml and Cargo.lock and does not build
version = "0.4.0-unstable-2024-02-06";
version = "0.4.2";
in rustPlatform.buildRustPackage {
in
rustPlatform.buildRustPackage {
pname = name;
inherit version;
src = fetchFromGitHub {
owner = "jrmoulton";
repo = name;
rev = "79ab43a4087aa7e4e865cab6a181dfd24c6e7a90";
hash = "sha256-gzbCeNZML2ygIy/H3uT9apahqI+4hmrTwgXvcZq4Xog=";
rev = "v${version}";
hash = "sha256-n6DXqsq3TsNob/fEqeOwNTVLPAvCr7CDN9qtXAiOMWQ=";
};
cargoHash = "sha256-Zvr2OH2pKtX60EApUSWhBV4cACMLl750UOiS3nN3J3Q=";
cargoHash = "sha256-e2U6x7HFoFbZxtJvY/ZpgEWagIrdRxPVZw2rP5aDIqg=";
passthru.tests.version = testers.testVersion {
package = tmux-sessionizer;
version = "0.4.1";
version = version;
};
# Needed to get openssl-sys to use pkg-config.