Skip to content

Commit

Permalink
wayland-logout: init at 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
quantenzitrone authored and wegank committed Sep 5, 2023
1 parent 42097be commit 6f2fb67
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pkgs/by-name/wa/wayland-logout/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
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;
};
}

0 comments on commit 6f2fb67

Please sign in to comment.