From 47851fa30f24ea129cad6cbcae7834591793efdb Mon Sep 17 00:00:00 2001 From: Maxim Karasev Date: Mon, 17 Apr 2023 14:26:36 +0300 Subject: chayang: init at 0.1.0 --- pkgs/tools/wayland/chayang/default.nix | 52 ++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 pkgs/tools/wayland/chayang/default.nix (limited to 'pkgs/tools/wayland/chayang') diff --git a/pkgs/tools/wayland/chayang/default.nix b/pkgs/tools/wayland/chayang/default.nix new file mode 100644 index 000000000000..ccfba6a0cf02 --- /dev/null +++ b/pkgs/tools/wayland/chayang/default.nix @@ -0,0 +1,52 @@ +{ lib +, stdenv +, fetchFromSourcehut +, meson +, ninja +, pkg-config +, wayland-scanner +, wayland-protocols +, wayland +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "chayang"; + version = "0.1.0"; + + src = fetchFromSourcehut { + owner = "~emersion"; + repo = "chayang"; + rev = "v${finalAttrs.version}"; + hash = "sha256-3Vu9/Bu2WQe2Yx/2BK25pEpuPNwX6g3qoFUMznCFHeI="; + }; + + strictDeps = true; + + pkgsBuildBuild = [ + pkg-config + ]; + + nativeBuildInputs = [ + meson + ninja + pkg-config + wayland-scanner + ]; + + buildInputs = [ + wayland-protocols + wayland + ]; + + meta = with lib; { + description = "Gradually dim the screen on Wayland"; + homepage = "https://git.sr.ht/~emersion/chayang/"; + license = licenses.mit; + longDescription = '' + Gradually dim the screen on Wayland. + Can be used to implement a grace period before locking the session. + ''; + maintainers = with maintainers; [ mxkrsv ]; + platforms = platforms.linux; + }; +}) -- cgit 1.4.1