biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / graphics / scantailor / advanced.nix
blobb85e0bdc6042d37b2d3dc21ae511d61e135eeafe
1 { lib, fetchFromGitHub, mkDerivation
2 , cmake, libjpeg, libpng, libtiff, boost
3 , qtbase, qttools }:
5 mkDerivation rec {
6   pname = "scantailor-advanced";
7   version = "1.0.19";
9   src = fetchFromGitHub {
10     owner = "vigri";
11     repo = "scantailor-advanced";
12     rev = "v${version}";
13     sha256 = "sha256-mvoCoYdRTgXW5t8yd9Y9TOl7D3RDVwcjUv2YDUWrtRI=";
14   };
16   nativeBuildInputs = [ cmake qttools ];
17   buildInputs = [ libjpeg libpng libtiff boost qtbase ];
19   meta = with lib; {
20     homepage = "https://github.com/vigri/scantailor-advanced";
21     description = "Interactive post-processing tool for scanned pages (vigri's fork)";
22     mainProgram = "scantailor";
23     license = licenses.gpl3Plus;
24     maintainers = [ ];
25     platforms = with platforms; gnu ++ linux ++ darwin;
26   };