imgcat: New expression 2.3.0

This commit is contained in:
John Wiegley 2018-08-28 12:48:58 -07:00
parent 4673962440
commit fa817fb9f7
No known key found for this signature in database
GPG Key ID: C144D8F4F19FE630
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,33 @@
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, ncurses }:
stdenv.mkDerivation rec {
name = "imgcat-${version}";
version = "2.3.0";
buildTools = [ autoconf automake libtool ncurses ];
preConfigure = ''
${autoconf}/bin/autoconf
sed -i -e "s|-ltermcap|-L ${ncurses}/lib -lncurses|" Makefile
'';
preInstall = ''
makeFlagsArray=(PREFIX="$out");
'';
src = fetchFromGitHub {
owner = "eddieantonio";
repo = "imgcat";
rev = "3d854c72f785dce0eecd9485767a7f972d54890c";
sha256 = "0m83c33rzxvs0w214njql2c7q3fg06wnyijch3l2s88i7frl121f";
};
meta = with stdenv.lib; {
description = "It's like cat, but for images";
homepage = https://github.com/eddieantonio/imgcat;
license = licenses.isc;
maintainers = with maintainers; [ jwiegley ];
platforms = platforms.unix;
};
}

View File

@ -17033,6 +17033,8 @@ with pkgs;
img2pdf = callPackage ../applications/misc/img2pdf { };
imgcat = callPackage ../applications/graphics/imgcat { };
# Impressive, formerly known as "KeyJNote".
impressive = callPackage ../applications/office/impressive { };