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

45 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, fetchFromGitHub, cmake, extra-cmake-modules, pkg-config
2020-07-01 03:54:33 +02:00
, qtbase, qtimageformats, qtwebengine, qtx11extras, mkDerivation
, libarchive, libXdmcp, libpthreadstubs, xcbutilkeysyms }:
2015-01-28 00:02:50 +01:00
mkDerivation rec {
pname = "zeal";
2020-07-01 03:54:33 +02:00
version = "0.6.999";
2015-01-28 00:02:50 +01:00
src = fetchFromGitHub {
2020-07-01 03:54:33 +02:00
owner = "zealdocs";
repo = "zeal";
rev = "1ce0e2e446232e7647c5588c1f603f1dd88e0f67";
sha256 = "0gj5qcm7ck8m5zfmiabay2f7wbxldmrkw8m3xi7v9i8y8hx0jkxr";
2015-01-28 00:02:50 +01:00
};
2020-07-01 03:54:33 +02:00
# 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})@'
'';
2021-01-17 03:14:13 +01:00
nativeBuildInputs = [ cmake extra-cmake-modules pkg-config ];
2020-07-01 03:54:33 +02:00
buildInputs = [
2020-07-01 03:54:33 +02:00
qtbase qtimageformats qtwebengine qtx11extras
libarchive
libXdmcp libpthreadstubs xcbutilkeysyms
];
2015-01-28 00:02:50 +01:00
meta = with lib; {
description = "A simple offline API documentation browser";
2015-01-28 00:02:50 +01:00
longDescription = ''
Zeal is a simple offline API documentation browser inspired by Dash (macOS
2015-01-28 00:02:50 +01:00
app), available for Linux and Windows.
'';
2020-07-01 03:54:33 +02:00
homepage = "https://zealdocs.org/";
license = licenses.gpl3;
2017-12-11 01:05:54 +01:00
maintainers = with maintainers; [ skeidel peterhoeg ];
2020-07-01 03:54:33 +02:00
platforms = platforms.linux;
2015-01-28 00:02:50 +01:00
};
}