mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00:00
cadffcfe50
checked with diffoscope+difflog and launching the programs i have fixed that issue in my other gir PRs
61 lines
1.4 KiB
Nix
61 lines
1.4 KiB
Nix
{ lib
|
|
, fetchurl
|
|
, gdk-pixbuf
|
|
, gobject-introspection
|
|
, gtk3
|
|
, mcomix
|
|
, python3
|
|
, testers
|
|
, wrapGAppsHook
|
|
|
|
# Recommended Dependencies:
|
|
, lhasa
|
|
, mupdf
|
|
, p7zip
|
|
, unrar
|
|
, unrarSupport ? false # unfree software
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "mcomix";
|
|
version = "2.1.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/mcomix/${pname}-${version}.tar.gz";
|
|
hash = "sha256-Nok4oqTezO84q9IDZvgi33ZeKfRL+tpg7QEDmp2ZZpU=";
|
|
};
|
|
|
|
buildInputs = [ gtk3 gdk-pixbuf ];
|
|
nativeBuildInputs = [ wrapGAppsHook gobject-introspection ];
|
|
propagatedBuildInputs = (with python3.pkgs; [ pillow pygobject3 pycairo ]);
|
|
|
|
# Tests are broken
|
|
doCheck = false;
|
|
|
|
# prevent double wrapping
|
|
dontWrapGApps = true;
|
|
|
|
preFixup = ''
|
|
makeWrapperArgs+=(
|
|
"''${gappsWrapperArgs[@]}"
|
|
"--prefix" "PATH" ":" "${lib.makeBinPath ([ p7zip lhasa mupdf ] ++ lib.optional (unrarSupport) unrar)}"
|
|
)
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = mcomix;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Comic book reader and image viewer";
|
|
longDescription = ''
|
|
User-friendly, customizable image viewer, specifically designed to handle
|
|
comic books and manga supporting a variety of container formats
|
|
(including CBR, CBZ, CB7, CBT, LHA and PDF)
|
|
'';
|
|
homepage = "https://sourceforge.net/projects/mcomix/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ thiagokokada ];
|
|
};
|
|
}
|