Merge pull request #53135 from ivan/init-qolibri
qolibri: init at 2018-11-14
This commit is contained in:
commit
e9c92029a9
29
pkgs/applications/misc/qolibri/default.nix
Normal file
29
pkgs/applications/misc/qolibri/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, pkgconfig, cmake, libeb, lzo, qtbase
|
||||||
|
, qtmultimedia, qttools, qtwebengine }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "qolibri-${version}";
|
||||||
|
version = "2018-11-14";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "ludios";
|
||||||
|
repo = "qolibri";
|
||||||
|
rev = "133a1c33e74d931ad54407f70d84a0016d96981f";
|
||||||
|
sha256 = "16ifix0q8ww4l3xflgxr9j81c0lzlnkjr8fj961x3nxz7288pdg2";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig cmake ];
|
||||||
|
buildInputs = [
|
||||||
|
libeb lzo qtbase qtmultimedia qttools qtwebengine
|
||||||
|
];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/ludios/qolibri;
|
||||||
|
description = "EPWING reader for viewing Japanese dictionaries";
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ ivan ];
|
||||||
|
license = licenses.gpl2;
|
||||||
|
};
|
||||||
|
}
|
@ -12087,6 +12087,8 @@ in
|
|||||||
|
|
||||||
qoauth = callPackage ../development/libraries/qoauth { };
|
qoauth = callPackage ../development/libraries/qoauth { };
|
||||||
|
|
||||||
|
qolibri = libsForQt5.callPackage ../applications/misc/qolibri { };
|
||||||
|
|
||||||
qt3 = callPackage ../development/libraries/qt-3 {
|
qt3 = callPackage ../development/libraries/qt-3 {
|
||||||
openglSupport = libGLSupported;
|
openglSupport = libGLSupported;
|
||||||
libpng = libpng12;
|
libpng = libpng12;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user