mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
27 lines
559 B
Nix
27 lines
559 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake } :
|
|
|
|
with lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "catimg";
|
|
version = "2.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "posva";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0a2dswbv4xddb2l2d55hc43lzvjwrjs5z9am7v6i0p0mi2fmc89s";
|
|
};
|
|
|
|
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;
|
|
};
|
|
|
|
}
|