nixpkgs/pkgs/data/documentation/zeal/default.nix

42 lines
1.0 KiB
Nix
Raw Normal View History

2015-12-20 02:12:01 +00:00
{ stdenv, fetchFromGitHub, libarchive, pkgconfig, qtbase
2016-01-13 04:06:42 +00:00
, qtimageformats, qtwebkit, qtx11extras, xorg }:
2015-01-27 23:02:50 +00:00
stdenv.mkDerivation rec {
2016-01-13 04:06:42 +00:00
version = "0.2.1";
2015-01-27 23:02:50 +00:00
name = "zeal-${version}";
src = fetchFromGitHub {
owner = "zealdocs";
repo = "zeal";
2015-05-16 21:20:33 +01:00
rev = "v${version}";
2016-01-13 04:06:42 +00:00
sha256 = "1j1nfvkwkb2xdh289q5gdb526miwwqmqjyd6fz9qm5dg467wmwa3";
2015-01-27 23:02:50 +00:00
};
buildInputs = [
2016-01-13 04:06:42 +00:00
xorg.xcbutilkeysyms pkgconfig qtbase qtimageformats qtwebkit qtx11extras libarchive
];
2015-01-27 23:02:50 +00:00
2015-05-16 21:20:33 +01:00
configurePhase = ''
qmake PREFIX=/
2015-01-27 23:02:50 +00:00
'';
installPhase = ''
make INSTALL_ROOT=$out install
'';
enableParallelBuilding = true;
meta = {
description = "A simple offline API documentation browser";
2015-01-27 23:02:50 +00:00
longDescription = ''
Zeal is a simple offline API documentation browser inspired by Dash (OS X
app), available for Linux and Windows.
'';
homepage = "http://zealdocs.org/";
license = stdenv.lib.licenses.gpl3;
2015-01-27 23:02:50 +00:00
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ skeidel ];
};
}