2015-04-10 16:02:57 +01:00
|
|
|
{ fetchurl, stdenv, pkgconfig, intltool, glib, gtk3
|
2018-07-21 01:44:44 +01:00
|
|
|
, libgsf, libxml2, libxslt, cairo, pango, librsvg }:
|
2015-04-10 16:02:57 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-12-16 05:01:06 +00:00
|
|
|
name = "goffice-0.10.44";
|
2015-04-10 16:02:57 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/goffice/0.10/${name}.tar.xz";
|
2018-12-16 05:01:06 +00:00
|
|
|
sha256 = "1fd7cm6j0g0mqgpqs4y22b4gd2ll4mcyvg4d0q22d5ndjapl4q3d";
|
2015-04-10 16:02:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ # ToDo lasem library for MathML, opt. introspection?
|
|
|
|
glib gtk3 libxml2 cairo pango libgsf
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [ libxslt librsvg ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A Glib/GTK+ set of document centric objects and utilities";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
There are common operations for document centric applications that are
|
|
|
|
conceptually simple, but complex to implement fully: plugins, load/save
|
|
|
|
documents, undo/redo.
|
|
|
|
'';
|
|
|
|
|
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
|
|
|
2017-05-04 20:41:54 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2015-04-10 16:02:57 +01:00
|
|
|
};
|
|
|
|
}
|