mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #31023 from yegortimoshenko/xfce4-settings/libinput
xfce4-settings: build w/ xorg-libinput, make some dependencies optional
This commit is contained in:
commit
a131ab23e2
1 changed files with 27 additions and 10 deletions
|
@ -1,5 +1,7 @@
|
|||
{ stdenv, fetchurl, pkgconfig, intltool, exo, gtk, libxfce4util, libxfce4ui
|
||||
, libglade, xfconf, xorg, libwnck, libnotify, libxklavier, garcon, upower }:
|
||||
{ stdenv, fetchurl, pkgconfig, intltool, exo, gtk, garcon, libxfce4util
|
||||
, libxfce4ui, xfconf, libXi, upower ? null, libnotify ? null
|
||||
, libXcursor ? null, xf86inputlibinput ? null, libxklavier ? null }:
|
||||
|
||||
let
|
||||
p_name = "xfce4-settings";
|
||||
ver_maj = "4.12";
|
||||
|
@ -15,17 +17,33 @@ stdenv.mkDerivation rec {
|
|||
|
||||
patches = [ ./xfce4-settings-default-icon-theme.patch ];
|
||||
|
||||
nativeBuildInputs =
|
||||
[ pkgconfig intltool
|
||||
];
|
||||
postPatch = ''
|
||||
for f in $(find . -name \*.c); do
|
||||
substituteInPlace $f --replace \"libinput-properties.h\" '<xorg/libinput-properties.h>'
|
||||
done
|
||||
'';
|
||||
|
||||
buildInputs =
|
||||
[ exo gtk libxfce4util libxfce4ui libglade upower xfconf
|
||||
xorg.libXi xorg.libXcursor libwnck libnotify libxklavier garcon
|
||||
]; #TODO: optional packages
|
||||
nativeBuildInputs = [ pkgconfig intltool ];
|
||||
|
||||
buildInputs = [
|
||||
exo
|
||||
gtk
|
||||
garcon
|
||||
libxfce4util
|
||||
libxfce4ui
|
||||
xfconf
|
||||
libXi
|
||||
upower
|
||||
libnotify
|
||||
libXcursor
|
||||
xf86inputlibinput
|
||||
libxklavier
|
||||
];
|
||||
|
||||
configureFlags = [ "--enable-pluggable-dialogs" "--enable-sound-settings" ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.xfce.org/projects/xfce4-settings;
|
||||
description = "Settings manager for Xfce";
|
||||
|
@ -34,4 +52,3 @@ stdenv.mkDerivation rec {
|
|||
maintainers = [ maintainers.eelco ];
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue