mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 02:33:25 +00:00
1d829295df
Diff: https://github.com/antonmedv/fx/compare/30.1.1...30.2.0 Changelog: https://github.com/antonmedv/fx/releases/tag/30.2.0
24 lines
604 B
Nix
24 lines
604 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "fx";
|
|
version = "30.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "antonmedv";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-1U3XaqRJpwC41R8hiF7vQ32DOTGGxhaU1ZWiXzys8/M=";
|
|
};
|
|
|
|
vendorHash = "sha256-6wVcdzTYnB0Bd/YLPcbryKxCXu5genzQQ96znbn2ahw=";
|
|
|
|
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; [ figsoda ];
|
|
};
|
|
}
|