about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/wa/wayland-logout/package.nix
blob: 22e197a4987a9554289fe6c8192b39d3b5466c84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
  };
}