nixpkgs/pkgs/desktops/gnome-3/3.22/devtools/devhelp/default.nix
Vladimír Čunát fa613c7ddd
gnome3*.devhelp: add missing gschemas
Otherwise it would crash when starting; fixes #21094.
2016-12-13 09:18:49 +01:00

19 lines
556 B
Nix

{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
, webkitgtk, intltool, gsettings_desktop_schemas }:
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
buildInputs = [
pkgconfig gtk3 wrapGAppsHook webkitgtk intltool gnome3.defaultIconTheme
gsettings_desktop_schemas
];
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;
};
}