summary refs log tree commit diff
path: root/pkgs/development/tools/fx/default.nix
blob: d3ae227ca26049399cdced42231bbaa594fe7dd5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "fx";
  version = "22.0.10";

  src = fetchFromGitHub {
    owner = "antonmedv";
    repo = pname;
    rev = version;
    sha256 = "sha256-BoWb27sRqcYHSLhUvjRIRIkcj90FitpbrH2R3VHsRyI=";
  };

  vendorSha256 = "sha256-ZDPRKrum2tnhscZxLzslezYs/hOOtHwAORrAWoQhXbs=";

  meta = with lib; {
    description = "Terminal JSON viewer";
    homepage = "https://github.com/antonmedv/fx";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}