Skip to content

Commit

Permalink
Merge pull request #91913 from peterhoeg/u/zeal
Browse files Browse the repository at this point in the history
zeal: 0.6.1 -> 0.6.999
  • Loading branch information
peterhoeg committed Jul 2, 2020
2 parents 736c7ca + b25c98e commit 2676464
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 38 deletions.
34 changes: 19 additions & 15 deletions pkgs/data/documentation/zeal/default.nix
@@ -1,40 +1,44 @@
{ stdenv, fetchFromGitHub, cmake, extra-cmake-modules, pkgconfig
, qtbase, qtimageformats, qtwebkit, qtx11extras, mkDerivation
, qtbase, qtimageformats, qtwebengine, qtx11extras, mkDerivation
, libarchive, libXdmcp, libpthreadstubs, xcbutilkeysyms }:

mkDerivation rec {
pname = "zeal";
version = "0.6.1";
version = "0.6.999";

src = fetchFromGitHub {
owner = "zealdocs";
repo = "zeal";
rev = "v${version}";
sha256 = "05qcjpibakv4ibhxgl5ajbkby3w7bkxsv3nfv2a0kppi1z0f8n8v";
owner = "zealdocs";
repo = "zeal";
rev = "1ce0e2e446232e7647c5588c1f603f1dd88e0f67";
sha256 = "0gj5qcm7ck8m5zfmiabay2f7wbxldmrkw8m3xi7v9i8y8hx0jkxr";
};

# 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 ];
# we only need this if we are using a version that hasn't been released. We
# could also match on the "VERSION x.y.z" bit but then it would have to be
# updated based on whatever is the latest release, so instead just rewrite the
# line.
postPatch = ''
sed -i CMakeLists.txt \
-e 's@^project.*@project(Zeal VERSION ${version})@'
'';

nativeBuildInputs = [ cmake extra-cmake-modules pkgconfig ];

buildInputs = [
qtbase qtimageformats qtwebkit qtx11extras
qtbase qtimageformats qtwebengine qtx11extras
libarchive
libXdmcp libpthreadstubs xcbutilkeysyms
];

enableParallelBuilding = true;

meta = with stdenv.lib; {
description = "A simple offline API documentation browser";
longDescription = ''
Zeal is a simple offline API documentation browser inspired by Dash (macOS
app), available for Linux and Windows.
'';
homepage = "https://zealdocs.org/";
license = licenses.gpl3;
homepage = "https://zealdocs.org/";
license = licenses.gpl3;
maintainers = with maintainers; [ skeidel peterhoeg ];
platforms = platforms.linux;
platforms = platforms.linux;
};
}
23 changes: 0 additions & 23 deletions pkgs/data/documentation/zeal/remove_ads.patch

This file was deleted.

0 comments on commit 2676464

Please sign in to comment.