mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
04c7506f0f
- The split was only done where it seemed that some parts aren't really needed, which were mainly headers and gtk-doc. - Update style to be closer with what's common in nixpkgs. - Change explicit removal of icon theme cache into including the hicolor theme.
39 lines
993 B
Nix
39 lines
993 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, gtk, libxfce4util, xfconf
|
|
, libglade, libstartup_notification, hicolor_icon_theme }:
|
|
let
|
|
p_name = "libxfce4ui";
|
|
ver_maj = "4.12";
|
|
ver_min = "1";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "${p_name}-${ver_maj}.${ver_min}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2";
|
|
sha256 = "3d619811bfbe7478bb984c16543d980cadd08586365a7bc25e59e3ca6384ff43";
|
|
};
|
|
|
|
outputs = [ "dev" "out" "doc" ]; # dev-doc only
|
|
|
|
buildInputs =
|
|
[ pkgconfig intltool gtk libxfce4util xfconf libglade
|
|
libstartup_notification hicolor_icon_theme
|
|
];
|
|
|
|
#TODO: gladeui
|
|
# Install into our own prefix instead.
|
|
configureFlags = [
|
|
"--with-libglade-module-path=$(out)/lib/libglade/2.0"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.xfce.org/;
|
|
description = "Basic GUI library for Xfce";
|
|
license = licenses.lgpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|
|
|