nixpkgs/pkgs/desktops/xfce/core/exo/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
733 B
Nix
Raw Normal View History

2021-11-28 19:51:44 +01:00
{ lib, mkXfceDerivation, docbook_xsl, glib, libxslt, gtk3
, 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
nativeBuildInputs = [
libxslt
docbook_xsl
];
buildInputs = [
gtk3
glib
libxfce4ui
libxfce4util
(perl.withPackages(ps: with ps; [ URI ])) # for $out/lib/xfce4/exo/exo-compose-mail
];
2017-12-17 16:02:52 +01:00
# Workaround https://bugzilla.xfce.org/show_bug.cgi?id=15825
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
};
}