531e4b80c9
Only acts on one-line dependency lists.
27 lines
798 B
Nix
27 lines
798 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, gtk, withGtk3 ? false, gtk3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
p_name = "gtk-xfce-engine";
|
|
ver_maj = "3.2";
|
|
ver_min = "0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2";
|
|
sha256 = "1va71f3gpl8gikfkmqsd5ikgp7qj8b64jii2l98g1ylnv8xrqp47";
|
|
};
|
|
name = "${p_name}-${ver_maj}.${ver_min}";
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ intltool gtk ] ++ stdenv.lib.optional withGtk3 gtk3;
|
|
|
|
configureFlags = stdenv.lib.optional withGtk3 "--enable-gtk3";
|
|
|
|
meta = {
|
|
homepage = http://www.xfce.org/;
|
|
description = "GTK+ theme engine for Xfce";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
|
};
|
|
}
|