lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 17.09-beta 25 lines 771 B view raw
1{ stdenv, fetchurl, pkgconfig, intltool, gtk, withGtk3 ? false, gtk3 }: 2 3stdenv.mkDerivation rec { 4 p_name = "gtk-xfce-engine"; 5 ver_maj = "3.2"; 6 ver_min = "0"; 7 8 src = fetchurl { 9 url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2"; 10 sha256 = "1va71f3gpl8gikfkmqsd5ikgp7qj8b64jii2l98g1ylnv8xrqp47"; 11 }; 12 name = "${p_name}-${ver_maj}.${ver_min}"; 13 14 buildInputs = [ pkgconfig intltool gtk ] ++ stdenv.lib.optional withGtk3 gtk3; 15 16 configureFlags = stdenv.lib.optional withGtk3 "--enable-gtk3"; 17 18 meta = { 19 homepage = http://www.xfce.org/; 20 description = "GTK+ theme engine for Xfce"; 21 license = stdenv.lib.licenses.gpl2Plus; 22 platforms = stdenv.lib.platforms.linux; 23 maintainers = [ stdenv.lib.maintainers.eelco ]; 24 }; 25}