f7997354b7
This makes things more explicit (and less confusing) but only touches the packages that I maintain.
33 lines
950 B
Nix
33 lines
950 B
Nix
{ lib, stdenv, fetchFromSourcehut
|
|
, meson, pkg-config, ninja, wayland-scanner, scdoc
|
|
, wayland, wayland-protocols
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wlsunset";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~kennylevinsen";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0hhsddh3rs066rbsjksr8kcwg8lvglbvs67dq0r5wx5c1xcwb51w";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson pkg-config ninja wayland-scanner scdoc ];
|
|
buildInputs = [ wayland wayland-protocols ];
|
|
|
|
meta = with lib; {
|
|
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 ];
|
|
};
|
|
}
|