Skip to content

Commit

Permalink
yelp: Use webkit2gtk-4.0 ABI
Browse files Browse the repository at this point in the history
yelp was our only package using the webkit2gtk-4.1 ABI, which inflated
the NixOS GNOME ISO with an extra flavor of webkit2gtk.

Fixes part of #159612.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
  • Loading branch information
andersk authored and jtojnar committed Feb 17, 2022
1 parent f70e28e commit 854a00b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pkgs/desktops/gnome/core/yelp/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
, stdenv
, gettext
, fetchurl
, webkitgtk_4_1
, webkitgtk
, pkg-config
, gtk3
, glib
Expand Down Expand Up @@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
buildInputs = [
gtk3
glib
webkitgtk_4_1
webkitgtk
sqlite
libxml2
libxslt
Expand All @@ -44,6 +44,10 @@ stdenv.mkDerivation rec {
gst_all_1.gst-plugins-good
];

# To reduce the GNOME ISO closure size. Remove when other packages
# are using webkit2gtk_4_1.
configureFlags = ["--with-webkit2gtk-4-0"];

passthru = {
updateScript = gnome.updateScript {
packageName = "yelp";
Expand Down

0 comments on commit 854a00b

Please sign in to comment.