2017-09-03 17:13:52 -07:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, extra-cmake-modules, pkgconfig
|
|
|
|
, qtbase, qtimageformats, qtwebkit, qtx11extras
|
|
|
|
, libarchive, libXdmcp, libpthreadstubs, xcbutilkeysyms }:
|
2015-01-27 15:02:50 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "zeal-${version}";
|
2018-10-03 00:35:14 -07:00
|
|
|
version = "0.6.1";
|
2015-01-27 15:02:50 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-09-03 17:13:52 -07:00
|
|
|
owner = "zealdocs";
|
|
|
|
repo = "zeal";
|
|
|
|
rev = "v${version}";
|
2018-10-03 00:35:14 -07:00
|
|
|
sha256 = "05qcjpibakv4ibhxgl5ajbkby3w7bkxsv3nfv2a0kppi1z0f8n8v";
|
2015-01-27 15:02:50 -08:00
|
|
|
};
|
|
|
|
|
2017-09-03 17:13:52 -07:00
|
|
|
# while ads can be disabled from the user settings, by default they are not so
|
|
|
|
# we patch it out completely instead
|
|
|
|
patches = [ ./remove_ads.patch ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake extra-cmake-modules pkgconfig ];
|
2015-05-26 08:02:41 -07:00
|
|
|
buildInputs = [
|
2017-09-03 17:13:52 -07:00
|
|
|
qtbase qtimageformats qtwebkit qtx11extras
|
|
|
|
libarchive
|
|
|
|
libXdmcp libpthreadstubs xcbutilkeysyms
|
2015-05-26 08:02:41 -07:00
|
|
|
];
|
2015-01-27 15:02:50 -08:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-09-03 17:13:52 -07:00
|
|
|
meta = with stdenv.lib; {
|
2015-04-30 08:05:14 -07:00
|
|
|
description = "A simple offline API documentation browser";
|
2015-01-27 15:02:50 -08:00
|
|
|
longDescription = ''
|
2017-08-06 15:05:18 -07:00
|
|
|
Zeal is a simple offline API documentation browser inspired by Dash (macOS
|
2015-01-27 15:02:50 -08:00
|
|
|
app), available for Linux and Windows.
|
|
|
|
'';
|
2018-01-05 11:42:46 -08:00
|
|
|
homepage = https://zealdocs.org/;
|
2017-09-03 17:13:52 -07:00
|
|
|
license = licenses.gpl3;
|
2017-12-10 16:05:54 -08:00
|
|
|
maintainers = with maintainers; [ skeidel peterhoeg ];
|
2017-09-03 17:13:52 -07:00
|
|
|
platforms = platforms.linux;
|
2015-01-27 15:02:50 -08:00
|
|
|
};
|
|
|
|
}
|