biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / applications / graphics / scantailor / universal.nix
blob31d5c6ca65707fc98bc1974475df7bd62185f7d9
1 { lib
2 , stdenv
3 , mkDerivation
4 , fetchFromGitHub
5 , cmake
6 , qtbase
7 , qttools
8 , wrapQtAppsHook
9 , zlib
10 , openjpeg
11 , libjpeg_turbo
12 , libpng
13 , libtiff
14 , boost
15 , libcanberra
18 stdenv.mkDerivation rec {
19   pname = "scantailor-universal";
20   version = "0.2.14";
22   src = fetchFromGitHub {
23     owner = "trufanov-nok";
24     repo = pname;
25     rev = version;
26     fetchSubmodules = true;
27     hash = "sha256-n8NbokK+U0FAuYXtjRJcxlI1XAmI4hk5zV3sF86hB/s=";
28   };
30   buildInputs = [ qtbase zlib libjpeg_turbo libpng libtiff boost libcanberra openjpeg ];
31   nativeBuildInputs = [ cmake wrapQtAppsHook qttools ];
33   meta = with lib; {
34     description = "Interactive post-processing tool for scanned pages";
35     homepage = "https://github.com/trufanov-nok/scantailor";
36     license = licenses.gpl3Plus;
37     maintainers = with maintainers; [ unclamped ];
38     platforms = platforms.unix;
39     mainProgram = "scantailor-universal-cli";
40   };