summary refs log tree commit diff
path: root/pkgs/desktops/xfce/applications/xfce4-panel-profiles/default.nix
blob: 3c7f99f7d3ac0287d92b32e896763d80fa5dd94a (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
{ mkXfceDerivation, lib, python3, intltool, gettext,
 gtk3, libxfce4ui, libxfce4util, pango, harfbuzz, gdk-pixbuf, atk }:

let
  pythonEnv = python3.withPackages(ps: [ ps.pygobject3 ]);
  makeTypelibPath = lib.makeSearchPathOutput "lib/girepository-1.0" "lib/girepository-1.0";
in mkXfceDerivation {
  category = "apps";
  pname = "xfce4-panel-profiles";
  version = "1.0.13";

  sha256 = "sha256-B3Q5d3KBN5m8wY82CIbIugJC8nNS+OcgKchn+TGrDhc=";

  nativeBuildInputs = [ intltool gettext ];
  propagatedBuildInputs = [ pythonEnv ];

  configurePhase = ''
    ./configure --prefix=$out
  '';

  postFixup = ''
    wrapProgram $out/bin/xfce4-panel-profiles \
      --set GI_TYPELIB_PATH ${makeTypelibPath [ gtk3 libxfce4ui libxfce4util pango harfbuzz gdk-pixbuf atk ]}
  '';

  meta = {
    description = "Simple application to manage Xfce panel layouts";
  };
}