biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / redshift-plasma-applet / default.nix
blob9bc39aaac4ff65eba79d37db602db7e5a7cf26e4
1 { lib, stdenv, cmake, extra-cmake-modules, plasma-framework, kwindowsystem, redshift, fetchFromGitHub, fetchpatch, }:
3 let version = "1.0.18"; in
5 stdenv.mkDerivation {
6   pname = "redshift-plasma-applet";
7   inherit version;
9   src = fetchFromGitHub {
10     owner = "kotelnik";
11     repo = "plasma-applet-redshift-control";
12     rev = "v${version}";
13     sha256 = "122nnbafa596rxdxlfshxk45lzch8c9342bzj7kzrsjkjg0xr9pq";
14   };
16   patches = [
17     # This patch fetches from out-of-source repo because the GitHub copy is frozen,
18     #     the active fork is now on invent.kde.org. Remove this patch when a new version is released and src is updated
19     # Redshift version >= 1.12 requires the -P option to clear the existing effects before applying shading.
20     #     Without it scrolling makes the screen gets darker and darker until it is impossible to see anything.
21     (fetchpatch {
22       url = "https://invent.kde.org/plasma/plasma-redshift-control/-/commit/898c3a4cfc6c317915f1e664078d8606497c4049.patch";
23       sha256 =  "0b6pa3fcj698mgqnc85jbbmcl3qpf418mh06qgsd3c4v237my0nv";
24     })
25   ];
27   patchPhase = ''
28     substituteInPlace package/contents/ui/main.qml \
29       --replace "redshiftCommand: 'redshift'" \
30                 "redshiftCommand: '${redshift}/bin/redshift'" \
31       --replace "redshiftOneTimeCommand: 'redshift -O " \
32                 "redshiftOneTimeCommand: '${redshift}/bin/redshift -O "
34     substituteInPlace package/contents/ui/config/ConfigAdvanced.qml \
35       --replace "'redshift -V'" \
36                 "'${redshift}/bin/redshift -V'"
37   '';
39   nativeBuildInputs = [
40     cmake
41     extra-cmake-modules
42   ];
44   buildInputs = [
45     plasma-framework
46     kwindowsystem
47   ];
49   dontWrapQtApps = true;
51   meta = with lib; {
52     description = "KDE Plasma 5 widget for controlling Redshift";
53     homepage = "https://github.com/kotelnik/plasma-applet-redshift-control";
54     license = licenses.gpl2Plus;
55     platforms = platforms.linux;
56     maintainers = with maintainers; [ benley zraexy ];
57   };