nixpkgs/pkgs/development/tools/fx/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
525 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "fx";
2022-05-13 19:46:01 +03:00
version = "24.0.0";
src = fetchFromGitHub {
owner = "antonmedv";
repo = pname;
rev = version;
2022-05-13 19:46:01 +03:00
sha256 = "sha256-Sg+mluDOGpkEUl+3BoItuPnMqs8F6o+D5xIqF0w0EIU=";
};
2022-05-13 19:46:01 +03:00
vendorSha256 = "sha256-4hx1AZQQ4xHBTzBK0OmrTUGMK4Rfu36cmopVV4SOjCQ=";
meta = with lib; {
description = "Terminal JSON viewer";
homepage = "https://github.com/antonmedv/fx";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}