mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
xfce4-13: backport panel plugins from xfce4-12
This commit is contained in:
parent
cd794f4216
commit
66939ec363
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, pkgconfig, intltool, gtk }:
|
||||
{ stdenv, fetchurl, pkgconfig, intltool, gtk2 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
p_name = "xfce4-icon-theme";
|
||||
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||
name = "${p_name}-${ver_maj}.${ver_min}";
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ intltool gtk ];
|
||||
buildInputs = [ intltool gtk2 ];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.xfce.org/;
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4-panel, libxfce4ui, libxfcegui4, xfconf, gtk}:
|
||||
{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4-panel, libxfce4ui, xfconf, gtk2 }:
|
||||
|
||||
with stdenv.lib;
|
||||
stdenv.mkDerivation rec {
|
||||
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||
name = "${p_name}-${ver_maj}.${ver_min}";
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ intltool libxfce4util libxfce4ui xfce4-panel libxfcegui4 xfconf gtk ];
|
||||
buildInputs = [ intltool libxfce4util libxfce4ui xfce4-panel xfconf gtk2 ];
|
||||
|
||||
meta = {
|
||||
homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
|
||||
|
@ -92,4 +92,24 @@ makeScope newScope (self: with self; {
|
||||
xfce4-xkb-plugin = callPackage ./xfce4-xkb-plugin { };
|
||||
|
||||
xfwm4 = callPackage ./xfwm4 { };
|
||||
|
||||
## COMMON PARTS WITH XFCE 4.12
|
||||
|
||||
gtk-xfce-engine = callPackage ../xfce/core/gtk-xfce-engine.nix { withGtk3 = false; };
|
||||
|
||||
xfce4-icon-theme = callPackage ../xfce/art/xfce4-icon-theme.nix { };
|
||||
|
||||
xfwm4-themes = callPackage ../xfce/art/xfwm4-themes.nix { };
|
||||
|
||||
xfce4-embed-plugin = callPackage ../xfce/panel-plugins/xfce4-embed-plugin.nix { };
|
||||
|
||||
xfce4-hardware-monitor-plugin = callPackage ../xfce/panel-plugins/xfce4-hardware-monitor-plugin.nix { };
|
||||
|
||||
## THIRD PARTY PLIGINS
|
||||
|
||||
xfce4-dockbarx-plugin = callPackage ../xfce/panel-plugins/xfce4-dockbarx-plugin.nix { };
|
||||
|
||||
xfce4-namebar-plugin = callPackage ../xfce/panel-plugins/xfce4-namebar-plugin.nix { };
|
||||
|
||||
xfce4-windowck-plugin = callPackage ../xfce/panel-plugins/xfce4-windowck-plugin.nix { };
|
||||
})
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ mkXfceDerivation, docbook_xsl, exo, gtk2, libburn, libICE, libisofs, libSM, libxfce4ui, libxslt }:
|
||||
{ mkXfceDerivation, docbook_xsl, exo, gtk2, libburn, libisofs, libxfce4ui, libxslt }:
|
||||
|
||||
mkXfceDerivation rec {
|
||||
category = "apps";
|
||||
@ -14,5 +14,5 @@ mkXfceDerivation rec {
|
||||
sha256 = "1lmv48vqrlap1a2ha72g16vqly18zvcwj8y3f3f00l10pmn52bkp";
|
||||
|
||||
nativeBuildInputs = [ libxslt ];
|
||||
buildInputs = [ exo gtk2 libburn libICE libisofs libSM libxfce4ui ];
|
||||
buildInputs = [ exo gtk2 libburn libisofs libxfce4ui ];
|
||||
}
|
||||
|
@ -1,5 +1,4 @@
|
||||
{ mkXfceDerivation, automakeAddFlags, dbus-glib, gst-plugins-base, gtk2
|
||||
, libICE, libSM, libunique, libxfce4ui, libxfce4util, xfce4-panel, xfconf }:
|
||||
{ mkXfceDerivation, automakeAddFlags, dbus-glib, gtk2, libxfce4ui, libxfce4util, xfce4-panel, xfconf }:
|
||||
|
||||
mkXfceDerivation rec {
|
||||
category = "apps";
|
||||
@ -17,11 +16,7 @@ mkXfceDerivation rec {
|
||||
|
||||
buildInputs = [
|
||||
dbus-glib
|
||||
gst-plugins-base
|
||||
gtk2
|
||||
libICE
|
||||
libSM
|
||||
libunique
|
||||
libxfce4ui
|
||||
libxfce4util
|
||||
xfce4-panel
|
||||
|
Loading…
Reference in New Issue
Block a user