biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / catimg / default.nix
blob9edfc576837d928272842f9050f9f4db2fc9c7b4
1 { lib, stdenv, fetchFromGitHub, cmake } :
3 stdenv.mkDerivation rec {
4   pname = "catimg";
5   version = "2.7.0";
7   src = fetchFromGitHub {
8     owner = "posva";
9     repo = pname;
10     rev = version;
11     sha256 = "0a2dswbv4xddb2l2d55hc43lzvjwrjs5z9am7v6i0p0mi2fmc89s";
12   };
14   nativeBuildInputs = [ cmake ];
16   meta = with lib; {
17     license = licenses.mit;
18     homepage = "https://github.com/posva/catimg";
19     description = "Insanely fast image printing in your terminal";
20     maintainers = with maintainers; [ ryantm ];
21     platforms = platforms.unix;
22     mainProgram = "catimg";
23   };