Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Adding scantailor.

(cherry picked from commit 7eda68709e9e50b1c4a608ab141f6c7065708c0f)
(cherry picked from commit b985a9e0a1fe392c37e91eaddd624cfcb9fa4a25)

Changed files
+26
pkgs
applications
graphics
scantailor
top-level
+22
pkgs/applications/graphics/scantailor/default.nix
··· 1 + {stdenv, fetchurl, qt4, cmake, libjpeg, libtiff, boost }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "scantailor-0.9.11.1"; 5 + 6 + src = fetchurl { 7 + url = "https://github.com/scantailor/scantailor/archive/RELEASE_0_9_11_1.tar.gz"; 8 + sha256 = "1z06yg228r317m8ab3mywg0wbpj0x2llqj187bh4g3k4xc2fcm8m"; 9 + }; 10 + 11 + buildInputs = [ qt4 cmake libjpeg libtiff boost ]; 12 + 13 + meta = { 14 + homepage = http://scantailor.org/; 15 + description = "Interactive post-processing tool for scanned pages"; 16 + 17 + license = stdenv.lib.licenses.gpl3Plus; 18 + 19 + maintainers = [ stdenv.lib.maintainers.viric ]; 20 + platforms = stdenv.lib.platforms.gnu; 21 + }; 22 + }
+4
pkgs/top-level/all-packages.nix
··· 9130 9130 9131 9131 sbagen = callPackage ../applications/misc/sbagen { }; 9132 9132 9133 + scantailor = callPackage ../applications/graphics/scantailor { 9134 + boost = boost155; 9135 + }; 9136 + 9133 9137 scite = callPackage ../applications/editors/scite { }; 9134 9138 9135 9139 scribus = callPackage ../applications/office/scribus {