Skip to content

Commit

Permalink
img-cat: init at 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
penguwin committed Nov 25, 2020
1 parent 5b3a952 commit ff7f34e
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkgs/applications/graphics/img-cat/default.nix
@@ -0,0 +1,22 @@
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
pname = "imgcat";
version = "1.2.0";

src = fetchFromGitHub {
owner = "trashhalo";
repo = "imgcat";
rev = "v${version}";
sha256 = "0x7a1izsbrbfph7wa9ny9r4a8lp6z15qpb6jf8wsxshiwnkjyrig";
};

vendorSha256 = "191gi4c5jk8p9xvbm1cdhk5yi8q2cp2jvjq1sgxqw1ad0lppwhg2";

meta = with lib; {
description = "A tool to output images as RGB ANSI graphics on the terminal";
homepage = "https://github.com/trashhalo/imgcat";
license = licenses.mit;
maintainers = with maintainers; [ penguwin ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -21862,6 +21862,8 @@ in

imgcat = callPackage ../applications/graphics/imgcat { };

img-cat = callPackage ../applications/graphics/img-cat { };

imgp = python3Packages.callPackage ../applications/graphics/imgp { };

# Impressive, formerly known as "KeyJNote".
Expand Down

0 comments on commit ff7f34e

Please sign in to comment.