about summary refs log tree commit diff
path: root/pkgs/by-name/hy/hydrapaper/package.nix
blob: 313a9ed4b8294211117e67118fffbb63f09c025e (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
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
{ lib
, python3Packages
, fetchFromGitLab
, meson
, ninja
, glib
, pkg-config
, pandoc
, appstream
, blueprint-compiler
, gobject-introspection
, wrapGAppsHook4
, dbus
, libadwaita
, xdg-user-dirs
}:

python3Packages.buildPythonApplication rec {
  pname = "hydrapaper";
  version = "3.3.2";
  pyproject = false;

  src = fetchFromGitLab {
    owner = "gabmus";
    repo = "HydraPaper";
    rev = version;
    hash = "sha256-IDaM8bM/0KH9h59523WqLKe400V5lLNyJ4faPf980Ro=";
  };

  nativeBuildInputs = [
    meson
    ninja
    glib
    pkg-config
    pandoc
    appstream
    blueprint-compiler
    gobject-introspection
    wrapGAppsHook4
  ];

  buildInputs = [
    dbus
    glib
    libadwaita
  ];

  propagatedBuildInputs = with python3Packages; [
    dbus-python
    pygobject3
    pillow
  ];

  # wrapGAppsHook4 propogates gtk4 -- which provides gtk4-update-icon-cache instead
  preInstall = ''
    substituteInPlace /build/source/meson_post_install.py \
      --replace-fail gtk-update-icon-cache gtk4-update-icon-cache
  '';

  dontWrapGApps = true;

  preFixup = ''
    gappsWrapperArgs+=(
      --prefix PATH : ${lib.makeBinPath [ glib xdg-user-dirs ]}
    )
    makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
  '';

  meta = {
    description = "GNOME utility for setting different wallpapers on individual monitors";
    homepage = "https://hydrapaper.gabmus.org";
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [ lachrymal ];
    mainProgram = "hydrapaper";
    platforms = lib.platforms.linux;
  };
}