mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-23 21:33:49 +00:00
24 lines
599 B
Nix
24 lines
599 B
Nix
{ mkXfceDerivation, docbook_xsl, libxslt, perlPackages, gtk3
|
|
, libxfce4ui, libxfce4util }:
|
|
|
|
mkXfceDerivation rec {
|
|
category = "xfce";
|
|
pname = "exo";
|
|
version = "0.12.8";
|
|
|
|
sha256 = "013am7q4pwfncf4hk2a3hv7yx2vxgzb5xm8qsi9mxkj29xdhrvs5";
|
|
|
|
nativeBuildInputs = [ libxslt perlPackages.URI docbook_xsl ];
|
|
buildInputs = [ gtk3 libxfce4ui libxfce4util ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace exo-helper/Makefile.am \
|
|
--replace 'exo_helper_2_CFLAGS =' \
|
|
'exo_helper_2_CFLAGS = $(GIO_UNIX_CFLAGS)'
|
|
'';
|
|
|
|
meta = {
|
|
description = "Application library for Xfce";
|
|
};
|
|
}
|