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

25 lines
685 B
Nix
Raw Normal View History

{stdenv, fetchurl, qt4, cmake, libjpeg, libtiff, boost }:
stdenv.mkDerivation rec {
2017-01-09 23:14:21 +00:00
name = "scantailor-0.9.12.1";
src = fetchurl {
2017-01-09 23:14:21 +00:00
url = "https://github.com/scantailor/scantailor/archive/RELEASE_0_9_12_1.tar.gz";
sha256 = "1pjx3a6hs16az6rki59bchy3biy7jndjx8r125q01aq7lbf5npgg";
};
buildInputs = [ qt4 cmake libjpeg libtiff boost ];
2017-01-09 23:14:21 +00:00
enableParallelBuilding = true;
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 ++ stdenv.lib.platforms.linux;
};
}