mcomix: 3.0.0 -> 3.1.0

This commit is contained in:
Siddhartha 2024-02-04 17:46:16 -05:00
parent 6fb5951991
commit 7bc271cdc0

View file

@ -18,12 +18,12 @@
python3.pkgs.buildPythonApplication rec {
pname = "mcomix";
version = "3.0.0";
version = "3.1.0";
pyproject = true;
src = fetchurl {
url = "mirror://sourceforge/mcomix/mcomix-${version}.tar.gz";
hash = "sha256-InDEPXXih49k5MiG1bATElxCiUs2RZTV7JeRVMTeoAQ=";
hash = "sha256-+Shuun/7w86VKBNamTmCPEJfO76fdKY5+HBvzCi0xCc=";
};
buildInputs = [
@ -58,6 +58,10 @@ python3.pkgs.buildPythonApplication rec {
)
'';
postInstall = ''
cp -a share $out/
'';
passthru.tests.version = testers.testVersion {
package = mcomix;
};