2021-11-28 19:51:44 +01:00
|
|
|
{ lib, mkXfceDerivation, docbook_xsl, glib, libxslt, gtk3
|
2020-12-12 13:00:00 +01:00
|
|
|
, libxfce4ui, libxfce4util, perl }:
|
2017-12-17 16:02:52 +01:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
mkXfceDerivation {
|
2017-12-17 16:02:52 +01:00
|
|
|
category = "xfce";
|
|
|
|
pname = "exo";
|
2022-12-15 18:39:30 +01:00
|
|
|
version = "4.18.0";
|
2017-12-17 16:02:52 +01:00
|
|
|
|
2022-12-15 18:39:30 +01:00
|
|
|
sha256 = "sha256-oWlKeUD1v2qqb8vY+2Cu9VJ1iThFPVboP12m/ob5KSQ=";
|
2017-12-17 16:02:52 +01:00
|
|
|
|
2020-04-16 05:56:21 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
libxslt
|
|
|
|
docbook_xsl
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gtk3
|
|
|
|
glib
|
|
|
|
libxfce4ui
|
|
|
|
libxfce4util
|
2020-12-12 13:00:00 +01:00
|
|
|
|
|
|
|
(perl.withPackages(ps: with ps; [ URI ])) # for $out/lib/xfce4/exo/exo-compose-mail
|
2020-04-16 05:56:21 +02:00
|
|
|
];
|
2017-12-17 16:02:52 +01:00
|
|
|
|
2019-08-17 05:06:19 +02:00
|
|
|
# Workaround https://bugzilla.xfce.org/show_bug.cgi?id=15825
|
2023-02-19 20:23:32 +01:00
|
|
|
env.NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
|
2017-12-17 16:02:52 +01:00
|
|
|
|
2021-11-28 19:51:44 +01:00
|
|
|
meta = with lib; {
|
2017-12-17 16:02:52 +01:00
|
|
|
description = "Application library for Xfce";
|
2021-11-28 19:51:44 +01:00
|
|
|
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
2017-12-17 16:02:52 +01:00
|
|
|
};
|
|
|
|
}
|