summary refs log tree commit diff
path: root/pkgs/desktops/xfce4-13/exo/default.nix
blob: 1ff1153d727fc88ca347397eb7997eed06375da0 (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
{ mkXfceDerivation, docbook_xml_xslt, libxslt, perlPackages, gtk2, gtk3
, libxfce4ui, libxfce4util }:

mkXfceDerivation rec {
  category = "xfce";
  pname = "exo";
  version = "0.12.2";

  sha256 = "1b4hl9yxvf8b8akqf2zngq3m93yqnqcmxqqds1dwzm9vm5sqydgh";

  nativeBuildInputs = [ libxslt perlPackages.URI ];
  buildInputs = [ gtk2 gtk3 libxfce4ui libxfce4util ];

  postPatch = ''
    substituteInPlace docs/reference/Makefile.am \
      --replace http://docbook.sourceforge.net/release/xsl/current \
                ${docbook_xml_xslt}/share/xml/docbook-xsl
  '';

  meta = {
    description = "Application library for Xfce";
  };
}