about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorAndré Vitor de Lima Matos <andre.vmatos@gmail.com>2022-04-21 12:41:40 -0300
committerAndré Vitor de Lima Matos <andre.vmatos@gmail.com>2022-04-24 19:05:44 -0300
commitaee2d2511b53cb318c64a598779f653007ba0d3e (patch)
tree86e86eb576ace92dc8cc350f6ea771f866c425f1 /pkgs/applications/graphics
parentdd47a9f456e832c6750d0d730bb8b6ee1bb28c71 (diff)
skanpage: move into/use kde/gear distribution from 22.04
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/skanpage/default.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/pkgs/applications/graphics/skanpage/default.nix b/pkgs/applications/graphics/skanpage/default.nix
deleted file mode 100644
index bee04cbad52c1..0000000000000
--- a/pkgs/applications/graphics/skanpage/default.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ lib
-, mkDerivation
-, fetchurl
-, extra-cmake-modules
-, kirigami2
-, ktextwidgets
-, libksane
-, qtquickcontrols2
-}:
-
-mkDerivation rec {
-  pname = "skanpage";
-  version = "1.0.0";
-
-  src = fetchurl {
-    url = "mirror://kde/stable/skanpage/${version}/${pname}-${version}.tar.xz";
-    hash = "sha256-kPVAG64oPkKF3ztHB4V7M2xc1AcvwiHnYpMMLMQNYGA=";
-  };
-
-  nativeBuildInputs = [ extra-cmake-modules ];
-
-  buildInputs = [
-    kirigami2
-    ktextwidgets
-    libksane
-    qtquickcontrols2
-  ];
-
-  meta = with lib; {
-    description = "KDE utility to scan images and multi-page documents";
-    homepage = "https://apps.kde.org/skanpage";
-    license = licenses.gpl2Plus;
-    maintainers = with maintainers; [ ];
-    platforms = platforms.linux;
-  };
-}