46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
34 lines
902 B
Nix
34 lines
902 B
Nix
{ stdenv, fetchFromGitHub
|
|
, meson, ninja, pkgconfig, scdoc
|
|
, wayland, wayland-protocols, systemd
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "swayidle";
|
|
version = "1.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "swaywm";
|
|
repo = "swayidle";
|
|
rev = version;
|
|
sha256 = "05qi96j58xqxjiighay1d39rfanxcpn6vlynj23mb5dymxvlaq9n";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig scdoc ];
|
|
buildInputs = [ wayland wayland-protocols systemd ];
|
|
|
|
mesonFlags = [ "-Dman-pages=enabled" "-Dlogind=enabled" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Idle management daemon for Wayland";
|
|
longDescription = ''
|
|
Sway's idle management daemon. It is compatible with any Wayland
|
|
compositor which implements the KDE idle protocol.
|
|
'';
|
|
inherit (src.meta) homepage;
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ primeos ];
|
|
};
|
|
}
|