hyprdim: 2.2.1 -> 2.2.2

This commit is contained in:
Donovan Glover 2023-10-29 18:39:49 -04:00
parent 707696ccd6
commit caa33d1169
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -2,38 +2,41 @@
, rustPlatform
, fetchFromGitHub
, installShellFiles
, nix-update-script
}:
rustPlatform.buildRustPackage rec {
pname = "hyprdim";
version = "2.2.1";
version = "2.2.2";
src = fetchFromGitHub {
owner = "donovanglover";
repo = pname;
repo = "hyprdim";
rev = version;
hash = "sha256-6HeVLgEJDPy4cWL5td3Xl7+a6WUFZWUFynvBzPhItcg=";
hash = "sha256-b2T/ueinKiheuK+siV29vJfEsEodq6qT2J3XxvoD/14=";
};
cargoHash = "sha256-qYX5o64X8PsFcTYuZ82lIShyUN69oTzQIHrQH4B7iIw=";
cargoHash = "sha256-Sf32vaqcxVdg6/kDidxBSr5XDWg3aNEBpEl31do2ZJ8=";
nativeBuildInputs = [
installShellFiles
];
postInstall = ''
installManPage man/hyprdim.1
installManPage target/man/hyprdim.1
installShellCompletion --cmd hyprdim \
--bash <(cat completions/hyprdim.bash) \
--fish <(cat completions/hyprdim.fish) \
--zsh <(cat completions/_hyprdim)
--bash <(cat target/completions/hyprdim.bash) \
--fish <(cat target/completions/hyprdim.fish) \
--zsh <(cat target/completions/_hyprdim)
'';
passthru.updateScript = nix-update-script { };
meta = with lib; {
description = "Automatically dim windows in Hyprland when switching between them";
homepage = "https://github.com/donovanglover/hyprdim";
license = licenses.mit;
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ donovanglover ];
mainProgram = "hyprdim";