about summary refs log tree commit diff
path: root/pkgs/applications/graphics/mcomix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-07-02 16:20:43 +0200
committerPeter Simons <simons@cryp.to>2012-07-02 17:13:35 +0200
commit36e345d052553e9cd1331801e1bbfb0515d54b9e (patch)
tree04c846f592d4dbe8a2bede1c32a75348c1d1fd96 /pkgs/applications/graphics/mcomix
parent3c28927a00cf2b82d85dcade56d8be16f338f267 (diff)
downloadnixlib-36e345d052553e9cd1331801e1bbfb0515d54b9e.tar
nixlib-36e345d052553e9cd1331801e1bbfb0515d54b9e.tar.gz
nixlib-36e345d052553e9cd1331801e1bbfb0515d54b9e.tar.bz2
nixlib-36e345d052553e9cd1331801e1bbfb0515d54b9e.tar.lz
nixlib-36e345d052553e9cd1331801e1bbfb0515d54b9e.tar.xz
nixlib-36e345d052553e9cd1331801e1bbfb0515d54b9e.tar.zst
nixlib-36e345d052553e9cd1331801e1bbfb0515d54b9e.zip
mcomix: added version 0.98
Patch submitted by Jan Malakhovski <oxij@oxij.org>.
Diffstat (limited to 'pkgs/applications/graphics/mcomix')
-rw-r--r--pkgs/applications/graphics/mcomix/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/mcomix/default.nix b/pkgs/applications/graphics/mcomix/default.nix
new file mode 100644
index 000000000000..7629c57a2b86
--- /dev/null
+++ b/pkgs/applications/graphics/mcomix/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchurl, buildPythonPackage, pygtk, pil }:
+
+buildPythonPackage rec {
+    namePrefix = "";
+    name = "mcomix-0.98";
+
+    src = fetchurl {
+      url = "mirror://sourceforge/mcomix/${name}.tar.bz2";
+      sha256 = "93805b6c8540bd673ac4a6ef6e952f00f8fc10e59a63c7e163324a64db2a6b03";
+    };
+
+    doCheck = false;
+
+    pythonPath = [ pygtk pil ];
+
+    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 = "GPLv2";
+    };
+}