Skip to content

Commit

Permalink
goffice: fix cross
Browse files Browse the repository at this point in the history
goffice needs glib-genmarshal in its nativeBuildInputs.
  • Loading branch information
Adam Joseph authored and Artturin committed Apr 8, 2023
1 parent c1d2ffd commit e9bba1d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions pkgs/development/libraries/goffice/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{ fetchurl, lib, stdenv, pkg-config, intltool, glib, gtk3, lasem
, libgsf, libxml2, libxslt, cairo, pango, librsvg, gnome }:
, libgsf, libxml2, libxslt, cairo, pango, librsvg, gnome
, autoreconfHook
, gtk-doc
}:

stdenv.mkDerivation rec {
pname = "goffice";
Expand All @@ -12,7 +15,10 @@ stdenv.mkDerivation rec {
sha256 = "FqIhGRhVpqbA0Gse+OSBzz9SBBplTsltNYFwRboama8=";
};

nativeBuildInputs = [ pkg-config intltool ];
nativeBuildInputs = [
pkg-config intltool autoreconfHook gtk-doc
glib # for glib-genmarshal
];

propagatedBuildInputs = [
glib gtk3 libxml2 cairo pango libgsf lasem
Expand Down

0 comments on commit e9bba1d

Please sign in to comment.