mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 10:53:11 +00:00
65 lines
1.0 KiB
Nix
65 lines
1.0 KiB
Nix
{ lib
|
|
, stdenv
|
|
, gettext
|
|
, fetchurl
|
|
, webkitgtk_4_1
|
|
, pkg-config
|
|
, gtk3
|
|
, libhandy
|
|
, glib
|
|
, gnome
|
|
, adwaita-icon-theme
|
|
, sqlite
|
|
, itstool
|
|
, libxml2
|
|
, libxslt
|
|
, gst_all_1
|
|
, wrapGAppsHook3
|
|
, yelp-xsl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "yelp";
|
|
version = "42.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/yelp/${lib.versions.major version}/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-osX9B4epCJxyLMZr0Phc33CI2HDntsyFeZ+OW/+erEs=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
gettext
|
|
itstool
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
libhandy
|
|
glib
|
|
webkitgtk_4_1
|
|
sqlite
|
|
libxml2
|
|
libxslt
|
|
yelp-xsl
|
|
adwaita-icon-theme
|
|
gst_all_1.gst-plugins-base
|
|
gst_all_1.gst-plugins-good
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = "yelp";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://apps.gnome.org/Yelp/";
|
|
description = "Help viewer in Gnome";
|
|
maintainers = teams.gnome.members;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|