Commit 8d2ffe08 authored by figsoda's avatar figsoda
Browse files
parent 10d74285
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -2,21 +2,22 @@

buildGoModule rec {
  pname = "fx";
  version = "24.0.0";
  version = "24.1.0";

  src = fetchFromGitHub {
    owner = "antonmedv";
    repo = pname;
    rev = version;
    sha256 = "sha256-Sg+mluDOGpkEUl+3BoItuPnMqs8F6o+D5xIqF0w0EIU=";
    hash = "sha256-X6wuCAiQa1coHMz96aAXKGZFnius1vHJpk+EhbXqoMA=";
  };

  vendorSha256 = "sha256-4hx1AZQQ4xHBTzBK0OmrTUGMK4Rfu36cmopVV4SOjCQ=";
  vendorHash = "sha256-J19MhLvjxcxvcub888UFKI0iIf7OG3dmP5v40ElHCU4=";

  meta = with lib; {
    description = "Terminal JSON viewer";
    homepage = "https://github.com/antonmedv/fx";
    changelog = "https://github.com/antonmedv/fx/releases/tag/${src.rev}";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
    maintainers = with maintainers; [ figsoda ];
  };
}