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

View File

@ -7,28 +7,29 @@
, Security , Security
, testers , testers
, tmux-sessionizer , tmux-sessionizer
}: let }:
let
name = "tmux-sessionizer"; 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.2";
version = "0.4.0-unstable-2024-02-06";
in rustPlatform.buildRustPackage { in
rustPlatform.buildRustPackage {
pname = name; pname = name;
inherit version; inherit version;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jrmoulton"; owner = "jrmoulton";
repo = name; repo = name;
rev = "79ab43a4087aa7e4e865cab6a181dfd24c6e7a90"; rev = "v${version}";
hash = "sha256-gzbCeNZML2ygIy/H3uT9apahqI+4hmrTwgXvcZq4Xog="; hash = "sha256-n6DXqsq3TsNob/fEqeOwNTVLPAvCr7CDN9qtXAiOMWQ=";
}; };
cargoHash = "sha256-Zvr2OH2pKtX60EApUSWhBV4cACMLl750UOiS3nN3J3Q="; cargoHash = "sha256-e2U6x7HFoFbZxtJvY/ZpgEWagIrdRxPVZw2rP5aDIqg=";
passthru.tests.version = testers.testVersion { passthru.tests.version = testers.testVersion {
package = tmux-sessionizer; package = tmux-sessionizer;
version = "0.4.1"; version = version;
}; };
# Needed to get openssl-sys to use pkg-config. # Needed to get openssl-sys to use pkg-config.