nixpkgs/pkgs/applications/misc/qolibri/default.nix

30 lines
785 B
Nix
Raw Normal View History

2019-09-10 21:26:57 +00:00
{ mkDerivation, lib, fetchFromGitHub, pkgconfig, cmake, libeb, lzo
, qtbase, qtmultimedia, qttools, qtwebengine }:
2018-12-18 09:56:37 +00:00
2019-09-10 21:26:57 +00:00
mkDerivation {
pname = "qolibri";
2019-09-01 11:46:42 +00:00
version = "2019-07-22";
2018-12-18 09:56:37 +00:00
src = fetchFromGitHub {
owner = "ludios";
repo = "qolibri";
2019-09-01 11:46:42 +00:00
rev = "b58f9838d39300cba444eba725a369181c5d746b";
sha256 = "0kcc6dvbcmq9y7hk8mp23pydiaqz6f0clg64d1f2y04ppphmah42";
2018-12-18 09:56:37 +00:00
};
nativeBuildInputs = [ pkgconfig cmake ];
buildInputs = [
libeb lzo qtbase qtmultimedia qttools qtwebengine
];
enableParallelBuilding = true;
2019-09-10 21:26:57 +00:00
meta = with lib; {
homepage = "https://github.com/ludios/qolibri";
2018-12-18 09:56:37 +00:00
description = "EPWING reader for viewing Japanese dictionaries";
platforms = platforms.linux;
maintainers = with maintainers; [ ];
2018-12-18 09:56:37 +00:00
license = licenses.gpl2;
};
}