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

24 lines
654 B
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{lib, stdenv, fetchurl, qt4, cmake, libjpeg, libtiff, boost }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
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";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ qt4 libjpeg libtiff boost ];
meta = {
homepage = "https://scantailor.org/";
description = "Interactive post-processing tool for scanned pages";
2021-01-15 13:21:58 +00:00
license = lib.licenses.gpl3Plus;
2021-01-15 13:21:58 +00:00
maintainers = [ lib.maintainers.viric ];
platforms = lib.platforms.gnu ++ lib.platforms.linux;
};
}