nixpkgs/pkgs/desktops/gnome/core/yelp/default.nix
Anders Kaseorg 854a00b962 yelp: Use webkit2gtk-4.0 ABI
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>
2022-02-17 02:06:12 +01:00

65 lines
1.1 KiB
Nix

{ lib
, stdenv
, gettext
, fetchurl
, webkitgtk
, pkg-config
, gtk3
, glib
, gnome
, sqlite
, itstool
, libxml2
, libxslt
, gst_all_1
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
pname = "yelp";
version = "41.2";
src = fetchurl {
url = "mirror://gnome/sources/yelp/${lib.versions.major version}/${pname}-${version}.tar.xz";
sha256 = "sha256-sAvwM/At15ttPyVQMccd+NbtOOVSyHC485GjdHJMQ8U=";
};
nativeBuildInputs = [
pkg-config
gettext
itstool
wrapGAppsHook
];
buildInputs = [
gtk3
glib
webkitgtk
sqlite
libxml2
libxslt
gnome.yelp-xsl
gnome.adwaita-icon-theme
gst_all_1.gst-plugins-base
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";
};
};
meta = with lib; {
homepage = "https://wiki.gnome.org/Apps/Yelp";
description = "The help viewer in Gnome";
maintainers = teams.gnome.members;
license = licenses.gpl2;
platforms = platforms.linux;
};
}