18757f3a11
xfce4-embed-plugin : 1.4.1 -> 1.6.0 xfce4-eyes-plugin : 4.4.3 -> 4.4.4 xfce4-fsguard-plugin : 1.0.1 -> 1.0.2 xfce4-verve-plugin : 1.0.1 -> 1.1.0 xfce4-xkb-plugin : 0.5.6 -> 0.7.1
24 lines
779 B
Nix
24 lines
779 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}:
|
|
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
p_name = "xfce4-embed-plugin";
|
|
ver_maj = "1.6";
|
|
ver_min = "0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
|
|
sha256 = "0a72kqsjjh45swimqlpyrahdnplp0383v0i4phr4n6g8c1ixyry7";
|
|
};
|
|
name = "${p_name}-${ver_maj}.${ver_min}";
|
|
|
|
buildInputs = [ pkgconfig intltool libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ];
|
|
|
|
meta = {
|
|
homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
|
|
description = "Embed arbitrary app windows on Xfce panel";
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
};
|
|
}
|