mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
goffice: minor update, dep cleanup
Also enable parallel building.
This commit is contained in:
parent
ef32fbe6a4
commit
dc3f762019
@ -1,19 +1,23 @@
|
||||
{ fetchurl, stdenv, pkgconfig, intltool, bzip2, glib, gdk_pixbuf, gtk3
|
||||
, libgsf, libxml2, cairo, pango, librsvg, libspectre }:
|
||||
{ fetchurl, stdenv, pkgconfig, intltool, glib, gtk3
|
||||
, libgsf, libxml2, libxslt, cairo, pango, librsvg, libspectre }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "goffice-0.10.9";
|
||||
name = "goffice-0.10.12";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/goffice/0.10/${name}.tar.xz";
|
||||
sha256 = "0xc82hymhkdglnksd3r7405p39d5ym826rwaa7dfkps5crjwq8cg";
|
||||
sha256 = "0vh0sdig5n8sxzh4xx82lm8y8d0jcdhc2ipb1kq02qs142zs74ff";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig intltool ];
|
||||
|
||||
propagatedBuildInputs = [ # ToDo lasem library for MathML, opt. introspection?
|
||||
pkgconfig intltool bzip2 glib gdk_pixbuf gtk3
|
||||
libgsf libxml2 cairo pango librsvg libspectre
|
||||
glib gtk3 libxml2 cairo pango libgsf
|
||||
];
|
||||
|
||||
buildInputs = [ libxslt librsvg ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
|
Loading…
Reference in New Issue
Block a user