Skip to content

Commit

Permalink
Merge pull request #225332 from amjoseph-nixpkgs/pr/fixcross/goffice
Browse files Browse the repository at this point in the history
goffice: fix cross
  • Loading branch information
Ma27 authored Apr 15, 2023
2 parents 99a9508 + e9bba1d commit 85b0815
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 85b0815

Please sign in to comment.