2010-08-09 20:02:22 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, gtk, libxfce4util, xfconf
|
|
|
|
, libglade, libstartup_notification }:
|
2010-08-09 00:43:00 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libxfcegui4-4.6.4";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2012-05-15 23:45:35 +02:00
|
|
|
url = "http://archive.xfce.org/xfce-4.6.2/src/${name}.tar.bz2";
|
2010-08-09 00:43:00 +02:00
|
|
|
sha1 = "a12c79f8fa14c5d1fc0fca5615a451b7d23f8695";
|
|
|
|
};
|
|
|
|
|
|
|
|
# By default, libxfcegui4 tries to install into libglade's prefix.
|
|
|
|
# Install into our own prefix instead.
|
2010-08-09 13:42:55 +02:00
|
|
|
preConfigure =
|
|
|
|
''
|
|
|
|
configureFlags="--with-libglade-module-path=$out/lib/libglade/2.0"
|
|
|
|
'';
|
2010-08-09 00:43:00 +02:00
|
|
|
|
2010-08-09 20:02:22 +02:00
|
|
|
buildInputs =
|
|
|
|
[ pkgconfig intltool gtk libxfce4util xfconf libglade
|
|
|
|
libstartup_notification
|
|
|
|
];
|
2010-08-09 00:43:00 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.xfce.org/;
|
|
|
|
description = "Basic GUI library for Xfce";
|
2010-08-09 13:42:55 +02:00
|
|
|
license = "LGPLv2+";
|
2010-08-09 00:43:00 +02:00
|
|
|
};
|
|
|
|
}
|