biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / wayland / wlsunset / default.nix
blob72edfb9c6f48776148511cb4465c718c5eb89f7d
1 { lib, stdenv, fetchFromSourcehut
2 , meson, pkg-config, ninja, wayland-scanner, scdoc
3 , wayland, wayland-protocols
4 }:
6 stdenv.mkDerivation rec {
7   pname = "wlsunset";
8   version = "0.4.0";
10   src = fetchFromSourcehut {
11     owner = "~kennylevinsen";
12     repo = pname;
13     rev = version;
14     sha256 = "sha256-U/yROKkU9pOBLIIIsmkltF64tt5ZR97EAxxGgrFYwNg=";
15   };
17   strictDeps = true;
18   depsBuildBuild = [
19     pkg-config
20   ];
21   nativeBuildInputs = [ meson pkg-config ninja wayland-scanner scdoc ];
22   buildInputs = [ wayland wayland-protocols ];
24   meta = with lib; {
25     description = "Day/night gamma adjustments for Wayland";
26     longDescription = ''
27       Day/night gamma adjustments for Wayland compositors supporting
28       wlr-gamma-control-unstable-v1.
29     '';
30     homepage = "https://sr.ht/~kennylevinsen/wlsunset/";
31     changelog = "https://git.sr.ht/~kennylevinsen/wlsunset/refs/${version}";
32     license = licenses.mit;
33     platforms = platforms.linux;
34     maintainers = with maintainers; [ primeos ];
35     mainProgram = "wlsunset";
36   };