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
32 lines
708 B
Nix
32 lines
708 B
Nix
{
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
lib,
|
|
meson,
|
|
ninja,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "wayland-logout";
|
|
version = "1.4";
|
|
src = fetchFromGitHub {
|
|
owner = "soreau";
|
|
repo = "wayland-logout";
|
|
rev = "v${version}";
|
|
hash = "sha256-VSAw6go4v937HWazXfMz8OdHgOnUtrlDXkslsV4eDIg=";
|
|
};
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
];
|
|
meta = with lib; {
|
|
description = ''
|
|
A utility designed to kill a single instance of a wayland compositor
|
|
'';
|
|
mainProgram = "wayland-logout";
|
|
homepage = "https://github.com/soreau/wayland-logout";
|
|
maintainers = with maintainers; [ quantenzitrone ];
|
|
license = with licenses; [ mit ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|