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

24 lines
599 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-08-12 06:38:41 -04:00
version = "0.12.8";
2017-12-17 10:02:52 -05:00
2019-08-12 06:38:41 -04:00
sha256 = "013am7q4pwfncf4hk2a3hv7yx2vxgzb5xm8qsi9mxkj29xdhrvs5";
2017-12-17 10:02:52 -05:00
nativeBuildInputs = [ libxslt perlPackages.URI docbook_xsl ];
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
'';
meta = {
description = "Application library for Xfce";
};
}