lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 16.09-beta 33 lines 1.2 kB view raw
1{ stdenv, fetchurl, buildPythonApplication, python27Packages }: 2 3buildPythonApplication rec { 4 namePrefix = ""; 5 name = "mcomix-${version}"; 6 version = "1.2.1"; 7 8 src = fetchurl { 9 url = "mirror://sourceforge/mcomix/${name}.tar.bz2"; 10 sha256 = "0fzsf9pklhfs1rzwzj64c0v30b74nk94p93h371rpg45qnfiahvy"; 11 }; 12 13 propagatedBuildInputs = with python27Packages; [ pygtk pillow sqlite3 ]; 14 15 meta = { 16 description = "Image viewer designed to handle comic books"; 17 18 longDescription = '' 19 MComix is an user-friendly, customizable image viewer. It is specifically 20 designed to handle comic books, but also serves as a generic viewer. 21 It reads images in ZIP, RAR, 7Zip or tar archives as well as plain image 22 files. It is written in Python and uses GTK+ through the PyGTK bindings, 23 and runs on both Linux and Windows. 24 25 MComix is a fork of the Comix project, and aims to add bug fixes and 26 stability improvements after Comix development came to a halt in late 2009. 27 ''; 28 29 homepage = http://mcomix.sourceforge.net/; 30 license = stdenv.lib.licenses.gpl2; 31 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 32 }; 33}