summary refs log tree commit diff
path: root/pkgs/tools/X11/caffeine-ng/default.nix
blob: aff7b8adfc239557a3088d3e26c834da8c55c687 (plain) (blame)
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
{ gdk_pixbuf, glib, gobject-introspection, gtk3, lib, libnotify,
  pythonPackages, wrapGAppsHook
}:

pythonPackages.buildPythonApplication rec {
  pname = "caffeine-ng";
  version = "3.4.2";

  src = pythonPackages.fetchPypi{
    inherit pname version;
    sha256="05k8smjlfjcccgmp8qi04l7106k46fs4p8fl5bdqqjwv6pwl7y4w";
  };

  nativeBuildInputs = [ wrapGAppsHook glib ];
  buildInputs = [ gdk_pixbuf gobject-introspection libnotify gtk3 ];
  pythonPath = with pythonPackages; [
    dbus-python docopt ewmh pygobject3 pyxdg
    setproctitle setuptools setuptools_scm wheel
  ];

  postBuild = ''
    mkdir -p $out/share
    cp -r share $out/
    glib-compile-schemas --strict $out/share/glib-2.0/schemas
  '';

  meta = with lib; {
    maintainers = with maintainers; [ marzipankaiser ];
    description = "Status bar application to temporarily inhibit screensaver and sleep mode";
    homepage = "https://github.com/caffeine-ng/caffeine-ng";
    license = licenses.gpl3;
    platforms = platforms.linux;
  };
}