mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 19:16:11 +00:00
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:
parent
f61fc5eea9
commit
bf5f25a163
22
pkgs/development/tools/fx/default.nix
Normal file
22
pkgs/development/tools/fx/default.nix
Normal 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; [ ];
|
||||
};
|
||||
}
|
@ -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…
Reference in New Issue
Block a user