summary refs log tree commit diff
path: root/pkgs/data/documentation/zeal/default.nix
blob: 7bc1b9fa1fdd473d177cbb622b58d9c6c3496e7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ stdenv, fetchFromGitHub, pkgconfig, qt5, libarchive }:

stdenv.mkDerivation rec {
  version = "0.1.1";
  name = "zeal-${version}";

  src = fetchFromGitHub {
    owner = "zealdocs";
    repo = "zeal";
    rev = "v${version}";
    sha256 = "172wf50fq1l5p8hq1irvpwr7ljxkjaby71afrm82jz3ixl6dg2ii";
  };

  buildInputs = [ pkgconfig qt5.base qt5.webkit qt5.imageformats libarchive ];

  configurePhase = ''
    qmake PREFIX=/
  '';

  installPhase = ''
    make INSTALL_ROOT=$out install
  '';

  enableParallelBuilding = true;

  meta = {
    description = "A simple offline API documentation browser";
    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 = with stdenv.lib.licenses; [ gpl3 ];
    platforms = stdenv.lib.platforms.linux;
    maintainers = with stdenv.lib.maintainers; [ skeidel ];
  };
}