2018-07-31 10:33:51 +01:00
|
|
|
{ stdenv, fetchurl, meson, ninja, pkgconfig, gnome3, gtk3, wrapGAppsHook
|
2018-12-02 11:41:15 +00:00
|
|
|
, glib, amtk, appstream-glib, gobject-introspection, python3
|
2018-03-15 12:26:13 +00:00
|
|
|
, webkitgtk, gettext, itstool, gsettings-desktop-schemas }:
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-25 20:07:20 +00:00
|
|
|
name = "devhelp-${version}";
|
2018-11-13 13:58:46 +00:00
|
|
|
version = "3.30.1";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-10-05 01:12:11 +01:00
|
|
|
url = "mirror://gnome/sources/devhelp/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
2018-11-13 13:58:46 +00:00
|
|
|
sha256 = "036sddvhs0blqpc2ixmjdl9vxynvkn5jpgn0jxr1fxcm4rh3q07a";
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
|
|
|
|
2018-12-02 11:41:15 +00:00
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig gettext itstool wrapGAppsHook appstream-glib gobject-introspection python3 ];
|
2016-09-18 20:35:23 +01:00
|
|
|
buildInputs = [
|
2018-07-31 10:33:51 +01:00
|
|
|
glib gtk3 webkitgtk amtk
|
2018-03-15 12:26:13 +00:00
|
|
|
gnome3.defaultIconTheme gsettings-desktop-schemas
|
2016-09-18 20:35:23 +01:00
|
|
|
];
|
|
|
|
|
2018-07-31 10:33:51 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
chmod +x meson_post_install.py # patchShebangs requires executable file
|
|
|
|
patchShebangs meson_post_install.py
|
|
|
|
'';
|
|
|
|
|
2018-03-15 12:26:13 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = "devhelp";
|
|
|
|
attrPath = "gnome3.devhelp";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-18 20:35:23 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "API documentation browser for GNOME";
|
2018-03-15 12:26:13 +00:00
|
|
|
homepage = https://wiki.gnome.org/Apps/Devhelp;
|
2016-09-18 20:35:23 +01:00
|
|
|
license = licenses.gpl2;
|
2018-03-15 12:26:13 +00:00
|
|
|
maintainers = gnome3.maintainers;
|
2016-09-18 20:35:23 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|