mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
xfce4-windowck-plugin: init at 0.4.4
This commit is contained in:
parent
93cabca3bd
commit
c557466988
@ -95,6 +95,7 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od
|
||||
xfce4_xkb_plugin = callPackage ./panel-plugins/xfce4-xkb-plugin.nix { };
|
||||
xfce4_weather_plugin = callPackage ./panel-plugins/xfce4-weather-plugin.nix { };
|
||||
xfce4_whiskermenu_plugin = callPackage ./panel-plugins/xfce4-whiskermenu-plugin.nix { };
|
||||
xfce4_windowck_plugin = callPackage ./panel-plugins/xfce4-windowck-plugin.nix { };
|
||||
xfce4_pulseaudio_plugin = callPackage ./panel-plugins/xfce4-pulseaudio-plugin.nix { };
|
||||
|
||||
}; # xfce_self
|
||||
|
30
pkgs/desktops/xfce/panel-plugins/xfce4-windowck-plugin.nix
Normal file
30
pkgs/desktops/xfce/panel-plugins/xfce4-windowck-plugin.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ stdenv, fetchFromGitHub, pkgconfig, intltool, python3, imagemagick, libwnck, gtk2
|
||||
, exo, libxfce4ui, libxfce4util, xfce4panel, xfconf, xfce4_dev_tools }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
p_name = "xfce4-windowck-plugin";
|
||||
version = "0.4.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cedl38";
|
||||
repo = "xfce4-windowck-plugin";
|
||||
rev = "v${version}";
|
||||
sha256 = "0c6a1ibh39dpq9x0dha5lsg0vzmgaf051fgwz0nlky0s94nwzvgv";
|
||||
};
|
||||
name = "${p_name}-${version}";
|
||||
|
||||
buildInputs = [ pkgconfig intltool python3 imagemagick libwnck gtk2
|
||||
exo libxfce4ui libxfce4util xfce4panel xfconf xfce4_dev_tools ];
|
||||
|
||||
preConfigure = "./autogen.sh";
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
|
||||
description = "Set of two plugins which allows you to put the maximized window title and windows buttons on the panel";
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.volth ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user