2014-02-27 20:37:28 +01:00
|
|
|
{ stdenv, intltool, fetchurl, vala, libgtop
|
|
|
|
, pkgconfig, gtk3, glib, hicolor_icon_theme
|
|
|
|
, bash, makeWrapper, itstool, libxml2
|
2014-03-10 20:30:27 +01:00
|
|
|
, gnome3, librsvg, gdk_pixbuf, file }:
|
2014-02-15 22:21:06 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "baobab-3.10.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2014-02-27 20:37:28 +01:00
|
|
|
url = "mirror://gnome/sources/baobab/3.10/${name}.tar.xz";
|
2014-02-15 22:21:06 +01:00
|
|
|
sha256 = "23ce8e4847ce5f1c8230e757532d94c84e6e273d6ec8fca20eecaed5f96563f9";
|
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = [ "--disable-static" ];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
|
|
|
|
|
|
|
|
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
|
2014-02-27 20:37:28 +01:00
|
|
|
propagatedBuildInputs = [ gdk_pixbuf gnome3.gnome_icon_theme librsvg
|
|
|
|
hicolor_icon_theme gnome3.gnome_icon_theme_symbolic ];
|
2014-02-15 22:21:06 +01:00
|
|
|
|
|
|
|
buildInputs = [ vala pkgconfig gtk3 glib libgtop intltool itstool libxml2
|
2014-03-10 20:30:27 +01:00
|
|
|
gnome3.gsettings_desktop_schemas makeWrapper file ];
|
2014-02-15 22:21:06 +01:00
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
rm $out/share/icons/hicolor/icon-theme.cache
|
|
|
|
rm $out/share/icons/HighContrast/icon-theme.cache
|
2014-03-10 20:30:27 +01:00
|
|
|
wrapProgram "$out/bin/baobab" \
|
|
|
|
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \
|
2014-04-05 15:51:42 +02:00
|
|
|
--prefix XDG_DATA_DIRS : "${gtk3}/share:${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH"
|
2014-02-15 22:21:06 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://wiki.gnome.org/Apps/Baobab;
|
|
|
|
description = "Graphical application to analyse disk usage in any Gnome environment";
|
|
|
|
maintainers = with maintainers; [ lethalman ];
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|