1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/desktops/xfce4-14/exo/default.nix

29 lines
788 B
Nix
Raw Normal View History

2019-05-20 19:53:29 -04:00
{ mkXfceDerivation, docbook_xsl, libxslt, perlPackages, gtk3
2017-12-17 10:02:52 -05:00
, libxfce4ui, libxfce4util }:
mkXfceDerivation rec {
category = "xfce";
pname = "exo";
2019-07-02 11:29:15 -04:00
version = "4.14pre2";
rev = "xfce-4.14pre2";
2017-12-17 10:02:52 -05:00
2019-07-02 11:29:15 -04:00
sha256 = "0s91fv4yzafmdi25c63yin15sa25cfcyarpvavr4q3mmmiamzpi0";
2017-12-17 10:02:52 -05:00
nativeBuildInputs = [ libxslt perlPackages.URI ];
2019-05-20 19:53:29 -04:00
buildInputs = [ gtk3 libxfce4ui libxfce4util ];
2017-12-17 10:02:52 -05:00
postPatch = ''
2019-07-02 11:29:15 -04:00
substituteInPlace exo-helper/Makefile.am \
--replace 'exo_helper_2_CFLAGS =' \
'exo_helper_2_CFLAGS = $(GIO_UNIX_CFLAGS)'
2017-12-17 10:02:52 -05:00
substituteInPlace docs/reference/Makefile.am \
--replace http://docbook.sourceforge.net/release/xsl/current \
${docbook_xsl}/share/xml/docbook-xsl
2017-12-17 10:02:52 -05:00
'';
meta = {
description = "Application library for Xfce";
};
}