2013-12-28 14:34:08 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, perl, perlXMLParser
|
2015-05-19 12:46:45 +00:00
|
|
|
, gnome3, makeWrapper, gtk3
|
2012-05-29 12:21:33 +00:00
|
|
|
}:
|
|
|
|
|
2013-02-05 10:59:26 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-12-02 21:07:33 +00:00
|
|
|
name = "gnumeric-1.12.18";
|
2012-05-29 14:02:31 +00:00
|
|
|
|
2012-05-29 12:21:33 +00:00
|
|
|
src = fetchurl {
|
2013-02-05 10:59:26 +00:00
|
|
|
url = "mirror://gnome/sources/gnumeric/1.12/${name}.tar.xz";
|
2014-12-02 21:07:33 +00:00
|
|
|
sha256 = "402224f858cfa4e91503ab1be0491fa3322713dabe56b6eae171def8b736d9e9";
|
2012-05-29 12:21:33 +00:00
|
|
|
};
|
|
|
|
|
2013-12-28 14:34:08 +00:00
|
|
|
preConfigure = ''sed -i 's/\(SUBDIRS.*\) doc/\1/' Makefile.in''; # fails when installing docs
|
|
|
|
|
2012-05-29 12:21:33 +00:00
|
|
|
configureFlags = "--disable-component";
|
|
|
|
|
2013-12-28 14:34:08 +00:00
|
|
|
# ToDo: optional libgda, python, introspection?
|
2012-05-29 12:21:33 +00:00
|
|
|
buildInputs = [
|
2013-12-28 14:34:08 +00:00
|
|
|
pkgconfig intltool perl perlXMLParser
|
2015-05-19 12:46:45 +00:00
|
|
|
gnome3.goffice gtk3 makeWrapper gnome3.defaultIconTheme
|
2012-05-29 12:21:33 +00:00
|
|
|
];
|
|
|
|
|
2014-04-17 09:44:11 +00:00
|
|
|
preFixup = ''
|
|
|
|
for f in "$out"/bin/gnumeric-*; do
|
|
|
|
wrapProgram $f \
|
2015-02-13 14:33:55 +00:00
|
|
|
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" \
|
|
|
|
--prefix GIO_EXTRA_MODULES : "${gnome3.dconf}/lib/gio/modules"
|
2014-04-17 09:44:11 +00:00
|
|
|
done
|
|
|
|
rm $out/share/icons/hicolor/icon-theme.cache
|
2013-12-28 14:34:08 +00:00
|
|
|
'';
|
|
|
|
|
2013-12-28 14:49:19 +00:00
|
|
|
meta = with stdenv.lib; {
|
2012-05-29 12:21:33 +00:00
|
|
|
description = "The GNOME Office Spreadsheet";
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2012-05-29 12:21:33 +00:00
|
|
|
homepage = http://projects.gnome.org/gnumeric/;
|
2013-12-28 14:49:19 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.vcunat ];
|
2012-05-29 12:21:33 +00:00
|
|
|
};
|
|
|
|
}
|