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
main
zowoq 2 years ago
parent f61fc5eea9
commit bf5f25a163
  1. 22
      pkgs/development/tools/fx/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -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; [ ];
};
}

@ -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 { };

Loading…
Cancel
Save