about summary refs log tree commit diff
path: root/pkgs/applications/graphics/scantailor
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2022-05-26 02:33:06 +0200
committerajs124 <git@ajs124.de>2023-09-04 13:55:25 +0200
commitc189ea39cf9b6b609c1d241e7b2083e6d2d482a0 (patch)
tree54d86586f3ed75ba256d9e07a5181073d4ce0356 /pkgs/applications/graphics/scantailor
parentbf64cf4ca3cac9a590f5891aea8f647902af44bd (diff)
scantailor: remove
alias to scantailor-advanced, which supports qt5 and is maintained
Diffstat (limited to 'pkgs/applications/graphics/scantailor')
-rw-r--r--pkgs/applications/graphics/scantailor/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/applications/graphics/scantailor/default.nix b/pkgs/applications/graphics/scantailor/default.nix
deleted file mode 100644
index 3e2037f6d45d8..0000000000000
--- a/pkgs/applications/graphics/scantailor/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, qt4, cmake, libjpeg, libtiff, boost }:
-
-stdenv.mkDerivation rec {
-  pname = "scantailor";
-  version = "0.9.12.1";
-
-  src = fetchFromGitHub {
-    owner = "scantailor";
-    repo = "scantailor";
-    rev = "RELEASE_${lib.replaceStrings ["."] ["_"] version}";
-    sha256 = "sha256-Jn8+X737vwaE0ZPYdQv/1SocmWFA74XL90IW8yNiafA=";
-  };
-
-  nativeBuildInputs = [ cmake ];
-  buildInputs = [ qt4 libjpeg libtiff boost ];
-
-  meta = {
-    homepage = "https://scantailor.org/";
-    description = "Interactive post-processing tool for scanned pages";
-
-    license = lib.licenses.gpl3Plus;
-
-    maintainers = [ lib.maintainers.viric ];
-    platforms = lib.platforms.gnu ++ lib.platforms.linux;
-  };
-}