mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
28 lines
794 B
Nix
28 lines
794 B
Nix
{ lib, fetchFromGitHub, mkDerivation
|
|
, cmake, libjpeg, libpng, libtiff, boost
|
|
, qtbase, qttools }:
|
|
|
|
mkDerivation rec {
|
|
pname = "scantailor-advanced";
|
|
version = "1.0.19";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vigri";
|
|
repo = "scantailor-advanced";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-mvoCoYdRTgXW5t8yd9Y9TOl7D3RDVwcjUv2YDUWrtRI=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake qttools ];
|
|
buildInputs = [ libjpeg libpng libtiff boost qtbase ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/vigri/scantailor-advanced";
|
|
description = "Interactive post-processing tool for scanned pages (vigri's fork)";
|
|
mainProgram = "scantailor";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ ];
|
|
platforms = with platforms; gnu ++ linux ++ darwin;
|
|
};
|
|
}
|