summary refs log tree commit diff
path: root/pkgs/applications/misc/qolibri/default.nix
blob: 3b61e3dbc1ad6ed81f7395b7c328b8b9f0c357b7 (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
{ mkDerivation, lib, fetchFromGitHub, pkg-config, cmake, libeb, lzo
, qtbase, qtmultimedia, qttools, qtwebengine }:

mkDerivation {
  pname = "qolibri";
  version = "2019-07-22";

  src = fetchFromGitHub {
    owner = "ludios";
    repo = "qolibri";
    rev = "b58f9838d39300cba444eba725a369181c5d746b";
    sha256 = "0kcc6dvbcmq9y7hk8mp23pydiaqz6f0clg64d1f2y04ppphmah42";
  };

  nativeBuildInputs = [ pkg-config cmake ];
  buildInputs = [
    libeb lzo qtbase qtmultimedia qttools qtwebengine
  ];

  meta = with lib; {
    homepage = "https://github.com/ludios/qolibri";
    description = "EPWING reader for viewing Japanese dictionaries";
    platforms = platforms.linux;
    maintainers = with maintainers; [ ];
    license = licenses.gpl2;
  };
}