b5f92a349c
GitOrigin-RevId: 7c9cc5a6e5d38010801741ac830a3f8fd667a7a0
41 lines
914 B
Nix
41 lines
914 B
Nix
{ lib
|
|
, stdenv
|
|
, mkDerivation
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, qtbase
|
|
, qttools
|
|
, wrapQtAppsHook
|
|
, zlib
|
|
, openjpeg
|
|
, libjpeg_turbo
|
|
, libpng
|
|
, libtiff
|
|
, boost
|
|
, libcanberra
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "scantailor-universal";
|
|
version = "0.2.14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "trufanov-nok";
|
|
repo = pname;
|
|
rev = version;
|
|
fetchSubmodules = true;
|
|
hash = "sha256-n8NbokK+U0FAuYXtjRJcxlI1XAmI4hk5zV3sF86hB/s=";
|
|
};
|
|
|
|
buildInputs = [ qtbase zlib libjpeg_turbo libpng libtiff boost libcanberra openjpeg ];
|
|
nativeBuildInputs = [ cmake wrapQtAppsHook qttools ];
|
|
|
|
meta = with lib; {
|
|
description = "Interactive post-processing tool for scanned pages";
|
|
homepage = "https://github.com/trufanov-nok/scantailor";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ unclamped ];
|
|
platforms = platforms.unix;
|
|
mainProgram = "scantailor-universal-cli";
|
|
};
|
|
}
|