Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / qolibri / default.nix
blobaf7cc7e01a6f1bcbf437563712765a3567e39681
1 { stdenv, lib, fetchFromGitHub, pkg-config, cmake, libeb, lzo
2 , qtmultimedia, qttools, qtwebengine, wrapQtAppsHook }:
4 stdenv.mkDerivation rec {
5   pname = "qolibri";
6   version = "2.1.4";
8   src = fetchFromGitHub {
9     owner = "ludios";
10     repo = "qolibri";
11     rev = version;
12     sha256 = "jyLF1MKDVH0Lt8lw+O93b+LQ4J+s42O3hebthJk83hg=";
13   };
15   nativeBuildInputs = [ pkg-config cmake qttools wrapQtAppsHook ];
16   buildInputs = [
17     libeb lzo qtmultimedia qtwebengine
18   ];
20   postInstall = ''
21     install -D $src/qolibri.desktop -t $out/share/applications
22   '';
24   meta = with lib; {
25     homepage = "https://github.com/ludios/qolibri";
26     description = "EPWING reader for viewing Japanese dictionaries";
27     platforms = platforms.linux;
28     maintainers = with maintainers; [ ];
29     license = licenses.gpl2;
30   };