1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

gnome3.devhelp: init at 3.16.1

This commit is contained in:
Jascha Geerds 2015-08-14 11:58:46 +02:00
parent f11d416666
commit 26db863cda
2 changed files with 27 additions and 0 deletions

View file

@ -308,6 +308,10 @@ let
anjuta = callPackage ./devtools/anjuta { };
devhelp = callPackage ./devtools/devhelp {
webkitgtk = webkitgtk24x;
};
gdl = callPackage ./devtools/gdl { };
gnome-devel-docs = callPackage ./devtools/gnome-devel-docs { };

View file

@ -0,0 +1,23 @@
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
, webkitgtk, intltool, hicolor_icon_theme }:
stdenv.mkDerivation rec {
name = "devhelp-${gnome3.version}.1";
src = fetchurl {
url = "mirror://gnome/sources/devhelp/${gnome3.version}/${name}.tar.xz";
sha256 = "0i8kyh86hzwxs8dm047ivghl2b92vigdxa3x4pk4ha0whpk38g37";
};
buildInputs = [
pkgconfig gtk3 wrapGAppsHook webkitgtk intltool hicolor_icon_theme
];
meta = with stdenv.lib; {
homepage = https://live.gnome.org/devhelp;
description = "API documentation browser for GNOME";
maintainers = gnome3.maintainers;
license = licenses.gpl2;
platforms = platforms.linux;
};
}