Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / graphics / img-cat / default.nix
blob825955c10b9ea37f8829326613189668b5d9376c
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "imgcat";
5   version = "1.2.0";
7   src = fetchFromGitHub {
8     owner = "trashhalo";
9     repo = "imgcat";
10     rev = "v${version}";
11     hash = "sha256-L2Yvp+UR6q45ctKsi0v45lKkSE7eJsUPvG7lpX8M6nQ=";
12   };
14   vendorHash = "sha256-4kF+LwVNBY770wHLLcVlAqPoy4SNhbp2TxdNWRiJL6Q=";
16   meta = with lib; {
17     description = "A tool to output images as RGB ANSI graphics on the terminal";
18     homepage = "https://github.com/trashhalo/imgcat";
19     license = licenses.mit;
20     maintainers = with maintainers; [ penguwin ];
21   };