f12e2d1e66
goffice is also updated. goffice is maintained by the gnumeric people and released in sync with gnumeric. gnumeric 1.12.x corresponds to goffice 0.10.x.
37 lines
1010 B
Nix
37 lines
1010 B
Nix
{ fetchurl, stdenv, pkgconfig, intltool, glib, gtk3
|
|
, libgsf, libxml2, libxslt, cairo, pango, librsvg, libspectre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "goffice-0.10.18";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/goffice/0.10/${name}.tar.xz";
|
|
sha256 = "4743a148d4452743f3484ed28285a6889adb4af2a61b72448e0ddfe7d5142c64";
|
|
};
|
|
|
|
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;
|
|
|
|
platforms = stdenv.lib.platforms.gnu;
|
|
};
|
|
}
|