nixpkgs/pkgs/tools/wayland/wleave/default.nix
2024-03-15 02:50:58 +00:00

72 lines
1.5 KiB
Nix

{ lib
, fetchFromGitHub
, rustPlatform
, at-spi2-atk
, pkg-config
, glib
, gtk3
, gtk-layer-shell
, installShellFiles
, scdoc
}:
rustPlatform.buildRustPackage rec {
pname = "wleave";
version = "0.4.0";
src = fetchFromGitHub {
owner = "AMNatty";
repo = "wleave";
rev = version;
hash = "sha256-FAtAFoPLJsWSFkc5CB90wlI2tvDmoOQ8fHQ8LWQgDww=";
};
cargoHash = "sha256-MV3mzRrOnHwmJUW3o/PM3g3SY6Hpy1LRpxDcL0hAm2Y=";
nativeBuildInputs = [
pkg-config
installShellFiles
scdoc
];
buildInputs = [
at-spi2-atk
gtk3
gtk-layer-shell
glib
];
postPatch = ''
substituteInPlace style.css \
--replace-fail "/usr/share/wleave" "$out/share/${pname}"
substituteInPlace src/main.rs \
--replace-fail "/etc/wleave" "$out/etc/${pname}"
'';
postInstall = ''
install -Dm644 -t "$out/etc/wleave" {"style.css","layout"}
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)
'';
meta = with lib; {
description = "A Wayland-native logout script written in GTK3";
homepage = "https://github.com/AMNatty/wleave";
license = licenses.mit;
mainProgram = "wleave";
maintainers = with maintainers; [ ludovicopiero ];
platforms = platforms.linux;
};
}