about summary refs log tree commit diff
path: root/pkgs/applications/graphics/scantailor
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2014-12-29 10:23:00 +0100
committerLluís Batlle i Rossell <viric@viric.name>2014-12-29 10:23:27 +0100
commitb985a9e0a1fe392c37e91eaddd624cfcb9fa4a25 (patch)
tree3a6c958cd769b55395e6ee56c485e52fa91b8d2f /pkgs/applications/graphics/scantailor
parent2cabafd363582e8079f5222540dc6b449d23f4c7 (diff)
Adding scantailor.
(cherry picked from commit 7eda68709e9e50b1c4a608ab141f6c7065708c0f)
Diffstat (limited to 'pkgs/applications/graphics/scantailor')
-rw-r--r--pkgs/applications/graphics/scantailor/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/scantailor/default.nix b/pkgs/applications/graphics/scantailor/default.nix
new file mode 100644
index 0000000000000..36f7545a0536a
--- /dev/null
+++ b/pkgs/applications/graphics/scantailor/default.nix
@@ -0,0 +1,22 @@
+{stdenv, fetchurl, qt4, cmake, libjpeg, libtiff, boost }:
+
+stdenv.mkDerivation rec {
+  name = "scantailor-0.9.11.1";
+
+  src = fetchurl {
+    url = "https://github.com/scantailor/scantailor/archive/RELEASE_0_9_11_1.tar.gz";
+    sha256 = "1z06yg228r317m8ab3mywg0wbpj0x2llqj187bh4g3k4xc2fcm8m";
+  };
+
+  buildInputs = [ qt4 cmake libjpeg libtiff boost ];
+
+  meta = {
+    homepage = http://scantailor.org/;
+    description = "Interactive post-processing tool for scanned pages";
+
+    license = stdenv.lib.licenses.gpl3Plus;
+
+    maintainers = [ stdenv.lib.maintainers.viric ];
+    platforms = stdenv.lib.platforms.gnu;
+  };
+}