mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
a0601f244b
goffice: 0.10.36 -> 0.10.38
37 lines
1,011 B
Nix
37 lines
1,011 B
Nix
{ fetchurl, stdenv, pkgconfig, intltool, glib, gtk3
|
|
, libgsf, libxml2, libxslt, cairo, pango, librsvg, libspectre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "goffice-0.10.38";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/goffice/0.10/${name}.tar.xz";
|
|
sha256 = "443199d7a9833fddaadfc4f9065c289e639eed480de316f37da816e396bb9764";
|
|
};
|
|
|
|
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.unix;
|
|
};
|
|
}
|