about summary refs log tree commit diff
path: root/pkgs/development/tools/fx/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/fx/default.nix')
-rw-r--r--pkgs/development/tools/fx/default.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/pkgs/development/tools/fx/default.nix b/pkgs/development/tools/fx/default.nix
deleted file mode 100644
index bcb458f0b6478..0000000000000
--- a/pkgs/development/tools/fx/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
-
-buildGoModule rec {
-  pname = "fx";
-  version = "34.0.0";
-
-  src = fetchFromGitHub {
-    owner = "antonmedv";
-    repo = pname;
-    rev = version;
-    hash = "sha256-gVeeCJOqrEua5quID1n1928oHtP9gfIDe4erVn1y2Eo=";
-  };
-
-  nativeBuildInputs = [ installShellFiles ];
-
-  vendorHash = "sha256-otORAeD9+J6/10TDusEnFfRRxTb/52Zk7Ttaw46xnsU=/sTS1mJw=";
-
-  postInstall = ''
-    installShellCompletion --cmd fx \
-      --bash <($out/bin/fx --comp bash) \
-      --fish <($out/bin/fx --comp fish) \
-      --zsh <($out/bin/fx --comp zsh)
-  '';
-
-  meta = with lib; {
-    description = "Terminal JSON viewer";
-    mainProgram = "fx";
-    homepage = "https://github.com/antonmedv/fx";
-    changelog = "https://github.com/antonmedv/fx/releases/tag/${src.rev}";
-    license = licenses.mit;
-    maintainers = with maintainers; [ figsoda ];
-  };
-}