nixpkgs/pkgs/tools/wayland/wlsunset/default.nix

32 lines
924 B
Nix
Raw Normal View History

2021-04-26 12:24:25 +00:00
{ lib, stdenv, fetchFromSourcehut, meson, pkg-config, ninja, wayland, scdoc
2020-11-24 18:44:52 +00:00
, wayland-protocols
}:
stdenv.mkDerivation rec {
pname = "wlsunset";
2021-04-26 12:24:25 +00:00
version = "0.2.0";
2020-11-24 18:44:52 +00:00
src = fetchFromSourcehut {
owner = "~kennylevinsen";
repo = pname;
rev = version;
2021-04-26 12:24:25 +00:00
sha256 = "0hhsddh3rs066rbsjksr8kcwg8lvglbvs67dq0r5wx5c1xcwb51w";
2020-11-24 18:44:52 +00:00
};
2021-04-26 12:24:25 +00:00
nativeBuildInputs = [ meson pkg-config ninja wayland scdoc ];
2020-11-24 18:44:52 +00:00
buildInputs = [ wayland wayland-protocols ];
meta = with lib; {
2020-11-24 18:44:52 +00:00
description = "Day/night gamma adjustments for Wayland";
longDescription = ''
Day/night gamma adjustments for Wayland compositors supporting
wlr-gamma-control-unstable-v1.
'';
homepage = "https://sr.ht/~kennylevinsen/wlsunset/";
changelog = "https://git.sr.ht/~kennylevinsen/wlsunset/refs/${version}";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ primeos ];
};
}