From 395d85d298d72291c8e68ac6dce9fec26e718524 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Tue, 26 Jul 2022 17:00:16 +0800 Subject: [PATCH] hoppscotch-cli: remove package The tool has been replaced with a newer CLI. --- pkgs/default.nix | 1 - pkgs/hoppscotch-cli.nix | 21 --------------------- 2 files changed, 22 deletions(-) delete mode 100644 pkgs/hoppscotch-cli.nix diff --git a/pkgs/default.nix b/pkgs/default.nix index 80b06860..7724d8ba 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -27,7 +27,6 @@ let callPackage ./gnome-shell-extension-pop-shell.nix { }; guile-config = callPackage ./guile-config.nix { }; guile-hall = callPackage ./guile-hall.nix { }; - hoppscotch-cli = callPackage ./hoppscotch-cli.nix { }; hush-shell = callPackage ./hush-shell.nix { }; ictree = callPackage ./ictree.nix { }; libcs50 = callPackage ./libcs50.nix { }; diff --git a/pkgs/hoppscotch-cli.nix b/pkgs/hoppscotch-cli.nix deleted file mode 100644 index 38cb0fee..00000000 --- a/pkgs/hoppscotch-cli.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ stdenv, lib, fetchFromGitHub, buildGoModule }: - -buildGoModule rec { - pname = "hoppscotch-cli"; - version = "0.0.8"; - - src = fetchFromGitHub { - owner = "hoppscotch"; - repo = "hopp-cli"; - rev = "v${version}"; - sha256 = "sha256-9Xktvmh1DsywIkoy2AV24WBL93/4bVcv8t8tFC89gBo="; - }; - - vendorSha256 = "sha256-0G4GWbcrsvgJrkjv0IZPXxXheUQg8m/S+ClJUCtztLo="; - - meta = with lib; { - description = "HTTP client for Hoppscotch"; - homepage = "https://hoppscotch.io/"; - license = licenses.mit; - }; -}