Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
85 lines
1.7 KiB
Nix
85 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
nix-update-script,
|
|
|
|
# Deps
|
|
installShellFiles,
|
|
pkg-config,
|
|
scdoc,
|
|
wrapGAppsHook4,
|
|
at-spi2-atk,
|
|
glib,
|
|
gtk4,
|
|
gtk4-layer-shell,
|
|
libadwaita,
|
|
librsvg,
|
|
libxml2,
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "wleave";
|
|
version = "0.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AMNatty";
|
|
repo = "wleave";
|
|
rev = version;
|
|
hash = "sha256-+0EKnaxRaHRxRvhASuvfpUijEZJFimR4zSzOyC3FOkQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-MRVWiQNzETFbWeKwYeoXSUY9gncRCsYdPEZhpOKcTvA=";
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
pkg-config
|
|
scdoc
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
at-spi2-atk
|
|
glib
|
|
gtk4
|
|
gtk4-layer-shell
|
|
libadwaita
|
|
librsvg
|
|
libxml2
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/config.rs \
|
|
--replace-fail "/etc/wleave" "$out/etc/${pname}"
|
|
|
|
substituteInPlace layout.json \
|
|
--replace-fail "/usr/share/wleave" "$out/share/${pname}"
|
|
'';
|
|
|
|
postInstall = ''
|
|
install -Dm644 -t "$out/etc/wleave" {"style.css","layout.json"}
|
|
install -Dm644 -t "$out/share/wleave/icons" icons/*
|
|
|
|
for f in man/*.scd; do
|
|
local page="man/$(basename "$f" .scd)"
|
|
scdoc < "$f" > "$page"
|
|
installManPage "$page"
|
|
done
|
|
|
|
installShellCompletion --cmd wleave \
|
|
--bash <(cat completions/wleave.bash) \
|
|
--fish <(cat completions/wleave.fish) \
|
|
--zsh <(cat completions/_wleave)
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
description = "Wayland-native logout script written in GTK4";
|
|
homepage = "https://github.com/AMNatty/wleave";
|
|
license = licenses.mit;
|
|
mainProgram = "wleave";
|
|
maintainers = with maintainers; [ ludovicopiero ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|