about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/graphics/krop/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/graphics/krop/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/graphics/krop/default.nix52
1 files changed, 52 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/graphics/krop/default.nix b/nixpkgs/pkgs/applications/graphics/krop/default.nix
new file mode 100644
index 000000000000..0adcf0b538d2
--- /dev/null
+++ b/nixpkgs/pkgs/applications/graphics/krop/default.nix
@@ -0,0 +1,52 @@
+{ lib, fetchFromGitHub, python3Packages, libsForQt5, ghostscript, qt5}:
+
+python3Packages.buildPythonApplication rec {
+  pname = "krop";
+  version = "0.6.0";
+
+  src = fetchFromGitHub {
+    owner = "arminstraub";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "1ygzc7vlwszqmsd3v1dsqp1dpsn6inx7g8gck63alvf88dbn8m3s";
+  };
+
+  propagatedBuildInputs = with python3Packages; [
+    pyqt5
+    pypdf2
+    poppler-qt5
+    ghostscript
+  ];
+  buildInputs = [
+    libsForQt5.poppler
+    libsForQt5.qtwayland
+  ];
+
+  nativeBuildInputs = [ qt5.wrapQtAppsHook ];
+  makeWrapperArgs = [
+   "\${qtWrapperArgs[@]}"
+  ];
+
+  postInstall = ''
+    install -m666 -Dt $out/share/applications krop.desktop
+  '';
+
+  # Disable checks because of interference with older Qt versions // xcb
+  doCheck = false;
+
+  meta = {
+    homepage = "http://arminstraub.com/software/krop";
+    description = "Graphical tool to crop the pages of PDF files";
+    longDescription = ''
+    Krop is a tool that allows you to optimise your PDF files, and remove
+    sections of the page you do not want.  A unique feature of krop, at least to my
+    knowledge, is its ability to automatically split pages into subpages to fit the
+    limited screensize of devices such as eReaders. This is particularly useful, if
+    your eReader does not support convenient scrolling. Krop also has a command line
+    interface.
+    '';
+    license = lib.licenses.gpl3Plus;
+    maintainers = with lib.maintainers; [ leenaars ];
+    platforms = lib.platforms.linux;
+  };
+}