mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
tmux-sessionizer: 0.6.0 -> 0.6.1 (#525865)
This commit is contained in:
commit
78011ee130
1 changed files with 8 additions and 3 deletions
|
|
@ -6,19 +6,20 @@
|
|||
rustPlatform,
|
||||
stdenv,
|
||||
versionCheckHook,
|
||||
git,
|
||||
}:
|
||||
rustPlatform.buildRustPackage (finalAttrs: {
|
||||
pname = "tmux-sessionizer";
|
||||
version = "0.6.0";
|
||||
version = "0.6.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jrmoulton";
|
||||
repo = "tmux-sessionizer";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-pRf381gxyf4leoEfSZKb5foVYYdVEsxuaTU27mbd46o=";
|
||||
hash = "sha256-u2PfLFwqO+VFPWeFumrAJWZjK9JMZF/v0pB0uJ8jfq8=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-AJqlzLr6MDFfPssSFMxslxFFuPVxoQGcuG7sZeu+8pg=";
|
||||
cargoHash = "sha256-YVR1m1cosymAKgcsgxSA/iIIF+AJfA92Ibapw0AMfoE=";
|
||||
|
||||
nativeInstallCheckInputs = [
|
||||
versionCheckHook
|
||||
|
|
@ -31,6 +32,10 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
|||
installShellFiles
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
git
|
||||
];
|
||||
|
||||
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
||||
installShellCompletion --cmd tms \
|
||||
--bash <(COMPLETE=bash $out/bin/tms) \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue