fx: 20.0.2 -> 22.0.10

https://github.com/antonmedv/fx/releases/tag/21.0.0
> This is the first version of fx implemented in go.

https://github.com/antonmedv/fx/releases/tag/22.0.0
This commit is contained in:
zowoq 2022-04-28 07:40:38 +10:00
parent f61fc5eea9
commit bf5f25a163
2 changed files with 23 additions and 1 deletions

View File

@ -0,0 +1,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; [ ];
};
}

View File

@ -3476,7 +3476,7 @@ with pkgs;
futhark = haskell.lib.compose.justStaticExecutables haskellPackages.futhark;
inherit (nodePackages) fx;
fx = callPackage ../development/tools/fx { };
tllist = callPackage ../development/libraries/tllist { };