2021-01-15 14:21:58 +01:00
|
|
|
{lib, stdenv, fetchurl, qt4, cmake, libjpeg, libtiff, boost }:
|
2014-12-29 10:23:00 +01:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2017-01-10 00:14:21 +01:00
|
|
|
name = "scantailor-0.9.12.1";
|
2014-12-29 10:23:00 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-01-10 00:14:21 +01:00
|
|
|
url = "https://github.com/scantailor/scantailor/archive/RELEASE_0_9_12_1.tar.gz";
|
|
|
|
sha256 = "1pjx3a6hs16az6rki59bchy3biy7jndjx8r125q01aq7lbf5npgg";
|
2014-12-29 10:23:00 +01:00
|
|
|
};
|
|
|
|
|
2020-12-31 08:48:55 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ qt4 libjpeg libtiff boost ];
|
2014-12-29 10:23:00 +01:00
|
|
|
|
|
|
|
meta = {
|
2021-07-31 19:01:50 +02:00
|
|
|
homepage = "https://scantailor.org/";
|
2014-12-29 10:23:00 +01:00
|
|
|
description = "Interactive post-processing tool for scanned pages";
|
|
|
|
|
2021-01-15 14:21:58 +01:00
|
|
|
license = lib.licenses.gpl3Plus;
|
2014-12-29 10:23:00 +01:00
|
|
|
|
2021-01-15 14:21:58 +01:00
|
|
|
maintainers = [ lib.maintainers.viric ];
|
|
|
|
platforms = lib.platforms.gnu ++ lib.platforms.linux;
|
2014-12-29 10:23:00 +01:00
|
|
|
};
|
|
|
|
}
|