Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #53135 from ivan/init-qolibri

qolibri: init at 2018-11-14

authored by

Matthew Bauer and committed by
GitHub
e9c92029 1cfc4da3

+31
+29
pkgs/applications/misc/qolibri/default.nix
··· 1 + { stdenv, fetchFromGitHub, pkgconfig, cmake, libeb, lzo, qtbase 2 + , qtmultimedia, qttools, qtwebengine }: 3 + 4 + stdenv.mkDerivation rec { 5 + name = "qolibri-${version}"; 6 + version = "2018-11-14"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "ludios"; 10 + repo = "qolibri"; 11 + rev = "133a1c33e74d931ad54407f70d84a0016d96981f"; 12 + sha256 = "16ifix0q8ww4l3xflgxr9j81c0lzlnkjr8fj961x3nxz7288pdg2"; 13 + }; 14 + 15 + nativeBuildInputs = [ pkgconfig cmake ]; 16 + buildInputs = [ 17 + libeb lzo qtbase qtmultimedia qttools qtwebengine 18 + ]; 19 + 20 + enableParallelBuilding = true; 21 + 22 + meta = with stdenv.lib; { 23 + homepage = https://github.com/ludios/qolibri; 24 + description = "EPWING reader for viewing Japanese dictionaries"; 25 + platforms = platforms.linux; 26 + maintainers = with maintainers; [ ivan ]; 27 + license = licenses.gpl2; 28 + }; 29 + }
+2
pkgs/top-level/all-packages.nix
··· 12087 12087 12088 12088 qoauth = callPackage ../development/libraries/qoauth { }; 12089 12089 12090 + qolibri = libsForQt5.callPackage ../applications/misc/qolibri { }; 12091 + 12090 12092 qt3 = callPackage ../development/libraries/qt-3 { 12091 12093 openglSupport = libGLSupported; 12092 12094 libpng = libpng12;