mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
catimg: init at 2.5.0
This commit is contained in:
parent
13182707e2
commit
146408d4ef
26
pkgs/tools/misc/catimg/default.nix
Normal file
26
pkgs/tools/misc/catimg/default.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
|
@ -16387,6 +16387,8 @@ in
|
|||
|
||||
catfish = callPackage ../applications/search/catfish { };
|
||||
|
||||
catimg = callPackage ../tools/misc/catimg { };
|
||||
|
||||
cava = callPackage ../applications/audio/cava { };
|
||||
|
||||
cb2bib = libsForQt5.callPackage ../applications/office/cb2bib { };
|
||||
|
|
Loading…
Reference in a new issue