mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-01 09:44:18 +00:00
parent
39e03699fe
commit
3137a5ca48
22
pkgs/applications/graphics/scantailor/default.nix
Normal file
22
pkgs/applications/graphics/scantailor/default.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{stdenv, fetchurl, qt4, cmake, libjpeg, libtiff, boost }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "scantailor-0.9.11.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/scantailor/scantailor/archive/RELEASE_0_9_11_1.tar.gz";
|
||||||
|
sha256 = "1z06yg228r317m8ab3mywg0wbpj0x2llqj187bh4g3k4xc2fcm8m";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ qt4 cmake libjpeg libtiff boost ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://scantailor.org/;
|
||||||
|
description = "Interactive post-processing tool for scanned pages";
|
||||||
|
|
||||||
|
license = stdenv.lib.licenses.gpl3Plus;
|
||||||
|
|
||||||
|
maintainers = [ stdenv.lib.maintainers.viric ];
|
||||||
|
platforms = stdenv.lib.platforms.gnu;
|
||||||
|
};
|
||||||
|
}
|
@ -10724,6 +10724,10 @@ let
|
|||||||
|
|
||||||
sbagen = callPackage ../applications/misc/sbagen { };
|
sbagen = callPackage ../applications/misc/sbagen { };
|
||||||
|
|
||||||
|
scantailor = callPackage ../applications/graphics/scantailor {
|
||||||
|
boost = boost155;
|
||||||
|
};
|
||||||
|
|
||||||
scite = callPackage ../applications/editors/scite { };
|
scite = callPackage ../applications/editors/scite { };
|
||||||
|
|
||||||
scribus = callPackage ../applications/office/scribus {
|
scribus = callPackage ../applications/office/scribus {
|
||||||
|
Loading…
Reference in New Issue
Block a user