nixpkgs/pkgs/desktops/gnome-3/3.18/devtools/devhelp/default.nix
2015-09-25 10:48:41 +02:00

18 lines
499 B
Nix

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