Merge pull request #56726 from ryantm/catimg

catimg: init at 2.5.0
This commit is contained in:
Ryan Mulligan 2019-03-03 13:10:19 -08:00 committed by GitHub
commit 2e5c30c3b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ stdenv, fetchFromGitHub, cmake } :
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "catimg";
version = "2.5.0";
src = fetchFromGitHub {
owner = "posva";
repo = pname;
rev = version;
sha256 = "0n74iczzgxrcq3zpa7ndycb9rinm829yvf81c747q4ngv5q6pzcm";
};
nativeBuildInputs = [ cmake ];
meta = {
license = licenses.mit;
homepage = "https://github.com/posva/catimg";
description = "Insanely fast image printing in your terminal";
maintainers = with maintainers; [ ryantm ];
platforms = platforms.unix;
};
}

View File

@ -16391,6 +16391,8 @@ in
catfish = callPackage ../applications/search/catfish { };
catimg = callPackage ../tools/misc/catimg { };
cava = callPackage ../applications/audio/cava { };
cb2bib = libsForQt5.callPackage ../applications/office/cb2bib { };