about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorNikolay Korotkiy <sikmir@gmail.com>2019-12-28 19:26:51 +0300
committerJon <jonringer@users.noreply.github.com>2020-01-22 00:39:03 -0800
commitd24a439d92cdb812f83e9f45b3e08465ce051596 (patch)
treee3d2ad08b099b077e1c42461808f3e26d1033032 /pkgs/applications/graphics
parentf6d0441bf57fc270de0e178059a190be830d0c1f (diff)
downloadnixlib-d24a439d92cdb812f83e9f45b3e08465ce051596.tar
nixlib-d24a439d92cdb812f83e9f45b3e08465ce051596.tar.gz
nixlib-d24a439d92cdb812f83e9f45b3e08465ce051596.tar.bz2
nixlib-d24a439d92cdb812f83e9f45b3e08465ce051596.tar.lz
nixlib-d24a439d92cdb812f83e9f45b3e08465ce051596.tar.xz
nixlib-d24a439d92cdb812f83e9f45b3e08465ce051596.tar.zst
nixlib-d24a439d92cdb812f83e9f45b3e08465ce051596.zip
imgp: init at 2.7
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/imgp/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/imgp/default.nix b/pkgs/applications/graphics/imgp/default.nix
new file mode 100644
index 000000000000..80420202c053
--- /dev/null
+++ b/pkgs/applications/graphics/imgp/default.nix
@@ -0,0 +1,38 @@
+{ lib, fetchFromGitHub, buildPythonApplication, pillow, imgp }:
+
+buildPythonApplication rec {
+  pname = "imgp";
+  version = "2.7";
+
+  src = fetchFromGitHub {
+    owner = "jarun";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "13r4fn3dd0nyidfhrr7zzpls5ifbyqdwxhyvpkqr8ahchws7wfc6";
+  };
+
+  propagatedBuildInputs = [ pillow ];
+
+  installFlags = [
+    "DESTDIR=$(out)"
+    "PREFIX="
+  ];
+
+  postInstall = ''
+    install -Dm555 auto-completion/bash/imgp-completion.bash $out/share/bash-completion/completions/imgp.bash
+    install -Dm555 auto-completion/fish/imgp.fish -t $out/share/fish/vendor_completions.d
+    install -Dm555 auto-completion/zsh/_imgp -t $out/share/zsh/site-functions
+  '';
+
+  checkPhase = ''
+    $out/bin/imgp --help
+  '';
+
+  meta = with lib; {
+    description = "High-performance CLI batch image resizer & rotator";
+    homepage = "https://github.com/jarun/imgp";
+    license = licenses.gpl3;
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ sikmir ];
+  };
+}