mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 04:02:10 +00:00
wleave: init at 0.3.0
This commit is contained in:
parent
c330720b48
commit
78f222eafa
60
pkgs/tools/wayland/wleave/default.nix
Normal file
60
pkgs/tools/wayland/wleave/default.nix
Normal file
|
@ -0,0 +1,60 @@
|
|||
{ lib
|
||||
, fetchFromGitHub
|
||||
, rustPlatform
|
||||
, at-spi2-atk
|
||||
, pkg-config
|
||||
, glib
|
||||
, gtk3
|
||||
, gtk-layer-shell
|
||||
, installShellFiles
|
||||
, scdoc
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "wleave";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "AMNatty";
|
||||
repo = "wleave";
|
||||
rev = version;
|
||||
hash = "sha256-qo9HnaWYsNZH1J8lAyKSwAOyvlCvIsh9maioatjtGkg=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-6Gppf1upWoMi+gcRSeQ1txSglAaBbpOXKs2LoJhslPQ=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
installShellFiles
|
||||
scdoc
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
at-spi2-atk
|
||||
gtk3
|
||||
gtk-layer-shell
|
||||
glib
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -4757,6 +4757,8 @@ with pkgs;
|
|||
|
||||
wl-screenrec = callPackage ../tools/wayland/wl-screenrec { };
|
||||
|
||||
wleave = callPackage ../tools/wayland/wleave { };
|
||||
|
||||
wlogout = callPackage ../tools/wayland/wlogout { };
|
||||
|
||||
wlopm = callPackage ../tools/wayland/wlopm { };
|
||||
|
|
Loading…
Reference in a new issue