Merge pull request #298756 from azahi/mvf-qolibri

qolibri: 2.1.4 -> 2.1.5-unstable-2024-03-17
This commit is contained in:
Pol Dellaiera 2024-04-03 14:14:57 +02:00 committed by GitHub
commit a1c35e4d43
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,32 +1,65 @@
{ stdenv, lib, fetchFromGitHub, pkg-config, cmake, libeb, lzo
, qtmultimedia, qttools, qtwebengine, wrapQtAppsHook }:
{ stdenv
, lib
, fetchFromGitHub
, cmake
, ninja
, qttools
, qtwebengine
, wrapQtAppsHook
}:
stdenv.mkDerivation rec {
let
eb = fetchFromGitHub {
owner = "mvf";
repo = "eb";
rev = "58e1c3bb9847ed5d05863f478f21e7a8ca3d74c8";
hash = "sha256-gZP+2P6fFADWht2c0hXmljVJQX8RpCq2mWP+KDi+GzE=";
};
in
stdenv.mkDerivation {
pname = "qolibri";
version = "2.1.4";
version = "2.1.5-unstable-2024-03-17";
src = fetchFromGitHub {
owner = "ludios";
owner = "mvf";
repo = "qolibri";
rev = version;
sha256 = "jyLF1MKDVH0Lt8lw+O93b+LQ4J+s42O3hebthJk83hg=";
rev = "99f0771184fcb2c5f47aad11c16002ebb8469a3f";
hash = "sha256-ArupqwejOO2YK9a3Ky0j20dIHs1jIqJksNIb4K2jwgI=";
};
nativeBuildInputs = [ pkg-config cmake qttools wrapQtAppsHook ];
nativeBuildInputs = [
cmake
ninja
qttools
wrapQtAppsHook
];
buildInputs = [
libeb lzo qtmultimedia qtwebengine
qtwebengine
];
cmakeFlags = [
"-DQOLIBRI_EB_SOURCE_DIR=${eb}"
];
postInstall = ''
install -D $src/qolibri.desktop -t $out/share/applications
install -Dm644 $src/qolibri.desktop -t $out/share/applications
for size in 16 32 48 64 128; do
install -Dm644 \
$src/images/qolibri-$size.png \
$out/share/icons/hicolor/''${size}x''${size}/apps/qolibri.png
done
'';
meta = with lib; {
homepage = "https://github.com/ludios/qolibri";
description = "EPWING reader for viewing Japanese dictionaries";
mainProgram = "qolibri";
platforms = platforms.linux;
maintainers = with maintainers; [ ];
homepage = "https://github.com/mvf/qolibri";
license = licenses.gpl2;
maintainers = with maintainers; [ azahi ];
platforms = platforms.unix;
broken = stdenv.isDarwin && stdenv.isx86_64; # Looks like a libcxx version mismatch problem.
mainProgram = "qolibri";
};
}