nixpkgs/pkgs/applications/graphics/mcomix/default.nix

33 lines
1.2 KiB
Nix
Raw Normal View History

2015-12-08 15:10:40 +01:00
{ stdenv, fetchurl, buildPythonPackage, python27Packages }:
buildPythonPackage rec {
namePrefix = "";
2015-02-09 13:16:18 +01:00
name = "mcomix-1.01";
src = fetchurl {
url = "mirror://sourceforge/mcomix/${name}.tar.bz2";
2015-02-09 13:16:18 +01:00
sha256 = "0k3pqbvk08kb1nr0qldaj9bc7ca6rvcycgfi2n7gqmsirq5kscys";
};
2015-12-08 15:10:40 +01:00
propagatedBuildInputs = with python27Packages; [ pygtk pillow sqlite3 ];
meta = {
description = "Image viewer designed to handle comic books";
longDescription = ''
MComix is an user-friendly, customizable image viewer. It is specifically
designed to handle comic books, but also serves as a generic viewer.
It reads images in ZIP, RAR, 7Zip or tar archives as well as plain image
files. It is written in Python and uses GTK+ through the PyGTK bindings,
and runs on both Linux and Windows.
MComix is a fork of the Comix project, and aims to add bug fixes and
stability improvements after Comix development came to a halt in late 2009.
'';
homepage = http://mcomix.sourceforge.net/;
license = stdenv.lib.licenses.gpl2;
2014-08-30 14:47:01 +02:00
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
};
}