imgp: init at 2.7

gstqt5
Nikolay Korotkiy 2019-12-28 19:26:51 +03:00 committed by Jon
parent f6d0441bf5
commit d24a439d92
2 changed files with 40 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -19703,6 +19703,8 @@ in
imgcat = callPackage ../applications/graphics/imgcat { };
imgp = python3Packages.callPackage ../applications/graphics/imgp { };
# Impressive, formerly known as "KeyJNote".
impressive = callPackage ../applications/office/impressive { };