mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
42 lines
1.2 KiB
Nix
42 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub
|
|
, meson, ninja, pkg-config, scdoc, wayland-scanner
|
|
, wayland, wayland-protocols, runtimeShell
|
|
, systemdSupport ? stdenv.isLinux, systemd
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "swayidle";
|
|
version = "1.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "swaywm";
|
|
repo = "swayidle";
|
|
rev = version;
|
|
sha256 = "sha256-/U6Y9H5ZqIJph3TZVcwr9+Qfd6NZNYComXuC1D9uGHg=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-scanner ];
|
|
buildInputs = [ wayland wayland-protocols ]
|
|
++ lib.optionals systemdSupport [ systemd ];
|
|
|
|
mesonFlags = [ "-Dman-pages=enabled" "-Dlogind=${if systemdSupport then "enabled" else "disabled"}" ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace main.c \
|
|
--replace '"sh"' '"${runtimeShell}"'
|
|
'';
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|