mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
28 lines
645 B
Nix
28 lines
645 B
Nix
|
{
|
||
|
stdenv,
|
||
|
fetchFromGitHub,
|
||
|
lib,
|
||
|
meson,
|
||
|
ninja,
|
||
|
}:
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "wayland-logout";
|
||
|
version = "1.4";
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "soreau";
|
||
|
repo = pname;
|
||
|
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
|
||
|
'';
|
||
|
homepage = "https://github.com/soreau/wayland-logout";
|
||
|
maintainers = with maintainers; [quantenzitrone];
|
||
|
license = with licenses; [mit];
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|