summaryrefslogtreecommitdiff
path: root/pkgs/applications/misc/redshift/default.nix
blob: 63957b2bd4ea7911acd156b5671af50582b7bd34 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
{
  lib,
  stdenv,
  fetchFromGitHub,
  fetchFromGitLab,
  autoconf,
  automake,
  gettext,
  intltool,
  libtool,
  pkg-config,
  wrapGAppsHook3,
  wrapPython,
  gobject-introspection,
  wayland-scanner,
  gtk3,
  python,
  pygobject3,
  pyxdg,

  withQuartz ? stdenv.hostPlatform.isDarwin,
  ApplicationServices,
  withRandr ? stdenv.hostPlatform.isLinux,
  libxcb,
  withDrm ? stdenv.hostPlatform.isLinux,
  libdrm,
  withVidmode ? stdenv.hostPlatform.isLinux,
  libXxf86vm,

  withGeolocation ? true,
  withCoreLocation ? withGeolocation && stdenv.hostPlatform.isDarwin,
  CoreLocation,
  Foundation,
  Cocoa,
  withGeoclue ? withGeolocation && stdenv.hostPlatform.isLinux,
  geoclue,
  withAppIndicator ? stdenv.hostPlatform.isLinux,
  libappindicator,
  libayatana-appindicator,
}:

let
  mkRedshift =
    {
      pname,
      version,
      src,
      meta,
    }:
    stdenv.mkDerivation rec {
      inherit
        pname
        version
        src
        meta
        ;

      patches = lib.optionals (pname != "gammastep") [
        # https://github.com/jonls/redshift/pull/575
        ./575.patch
      ];

      strictDeps = true;

      depsBuildBuild = [ pkg-config ];

      nativeBuildInputs = [
        autoconf
        automake
        gettext
        intltool
        libtool
        pkg-config
        wrapGAppsHook3
        wrapPython
        gobject-introspection
        python
      ] ++ lib.optionals (pname == "gammastep") [ wayland-scanner ];

      configureFlags =
        [
          "--enable-randr=${if withRandr then "yes" else "no"}"
          "--enable-geoclue2=${if withGeoclue then "yes" else "no"}"
          "--enable-drm=${if withDrm then "yes" else "no"}"
          "--enable-vidmode=${if withVidmode then "yes" else "no"}"
          "--enable-quartz=${if withQuartz then "yes" else "no"}"
          "--enable-corelocation=${if withCoreLocation then "yes" else "no"}"
        ]
        ++ lib.optionals (pname == "gammastep") [
          "--with-systemduserunitdir=${placeholder "out"}/lib/systemd/user/"
          "--enable-apparmor"
        ];

      buildInputs =
        [
          gtk3
        ]
        ++ lib.optional withRandr libxcb
        ++ lib.optional withGeoclue geoclue
        ++ lib.optional withDrm libdrm
        ++ lib.optional withVidmode libXxf86vm
        ++ lib.optional withQuartz ApplicationServices
        ++ lib.optionals withCoreLocation [
          CoreLocation
          Foundation
          Cocoa
        ]
        ++ lib.optional withAppIndicator (
          if (pname != "gammastep") then libappindicator else libayatana-appindicator
        );

      pythonPath = [
        pygobject3
        pyxdg
      ];

      preConfigure = "./bootstrap";

      dontWrapGApps = true;

      preFixup = ''
        makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
      '';

      postFixup = ''
        wrapPythonPrograms
        wrapGApp $out/bin/${pname}
      '';

      # the geoclue agent may inspect these paths and expect them to be
      # valid without having the correct $PATH set
      postInstall =
        if (pname == "gammastep") then
          ''
            substituteInPlace $out/share/applications/gammastep.desktop \
              --replace 'Exec=gammastep' "Exec=$out/bin/gammastep"
            substituteInPlace $out/share/applications/gammastep-indicator.desktop \
              --replace 'Exec=gammastep-indicator' "Exec=$out/bin/gammastep-indicator"
          ''
        else
          ''
            substituteInPlace $out/share/applications/redshift.desktop \
              --replace 'Exec=redshift' "Exec=$out/bin/redshift"
            substituteInPlace $out/share/applications/redshift-gtk.desktop \
              --replace 'Exec=redshift-gtk' "Exec=$out/bin/redshift-gtk"
          '';

      enableParallelBuilding = true;
    };
in
rec {
  redshift = mkRedshift rec {
    pname = "redshift";
    version = "1.12";

    src = fetchFromGitHub {
      owner = "jonls";
      repo = "redshift";
      rev = "v${version}";
      sha256 = "12cb4gaqkybp4bkkns8pam378izr2mwhr2iy04wkprs2v92j7bz6";
    };

    meta = with lib; {
      description = "Screen color temperature manager";
      longDescription = ''
        Redshift adjusts the color temperature according to the position
        of the sun. A different color temperature is set during night and
        daytime. During twilight and early morning, the color temperature
        transitions smoothly from night to daytime temperature to allow
        your eyes to slowly adapt. At night the color temperature should
        be set to match the lamps in your room.
      '';
      license = licenses.gpl3Plus;
      homepage = "http://jonls.dk/redshift";
      platforms = platforms.unix;
      mainProgram = "redshift";
      maintainers = [ ];
    };
  };

  gammastep = mkRedshift rec {
    pname = "gammastep";
    version = "2.0.11";

    src = fetchFromGitLab {
      owner = "chinstrap";
      repo = pname;
      rev = "v${version}";
      hash = "sha256-c8JpQLHHLYuzSC9bdymzRTF6dNqOLwYqgwUOpKcgAEU=";
    };

    meta = redshift.meta // {
      name = "${pname}-${version}";
      longDescription = "Gammastep" + lib.removePrefix "Redshift" redshift.meta.longDescription;
      homepage = "https://gitlab.com/chinstrap/gammastep";
      mainProgram = "gammastep";
      maintainers = (with lib.maintainers; [ primeos ]) ++ redshift.meta.maintainers;
    };
  };
}