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

37 lines
1 KiB
Nix
Raw Normal View History

2015-12-20 03:12:01 +01:00
{ stdenv, fetchFromGitHub, libarchive, pkgconfig, qtbase
, qtimageformats, qtwebkit, qtx11extras, xcbutilkeysyms, qmakeHook }:
2015-01-28 00:02:50 +01:00
stdenv.mkDerivation rec {
version = "0.3.0";
2015-01-28 00:02:50 +01:00
name = "zeal-${version}";
src = fetchFromGitHub {
owner = "zealdocs";
repo = "zeal";
2015-05-16 22:20:33 +02:00
rev = "v${version}";
sha256 = "1f0nsnily2lsrraj1f8j34lqhiskiyq22clkci7w4h2zfv35j1s0";
2015-01-28 00:02:50 +01:00
};
buildInputs = [
xcbutilkeysyms pkgconfig qtbase qtimageformats qtwebkit qtx11extras libarchive qmakeHook
];
2015-01-28 00:02:50 +01:00
qmakeFlags = [ "PREFIX=/" ];
2015-01-28 00:02:50 +01:00
installFlags = [ "INSTALL_ROOT=$(out)" ];
2015-01-28 00:02:50 +01:00
enableParallelBuilding = true;
meta = {
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 (OS X
app), available for Linux and Windows.
'';
homepage = "http://zealdocs.org/";
license = stdenv.lib.licenses.gpl3;
2015-01-28 00:02:50 +01:00
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ skeidel ];
};
}