From e27259d985d2de9a10eb2ae37a1baf954462b7e9 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Mon, 3 Feb 2025 12:31:37 +0100 Subject: [PATCH] vscode-extensions.anweber.httpyac: init at 6.16.6 --- .../anweber.vscode-httpyac/default.nix | 28 +++++++++++++++++++ .../editors/vscode/extensions/default.nix | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 pkgs/applications/editors/vscode/extensions/anweber.vscode-httpyac/default.nix diff --git a/pkgs/applications/editors/vscode/extensions/anweber.vscode-httpyac/default.nix b/pkgs/applications/editors/vscode/extensions/anweber.vscode-httpyac/default.nix new file mode 100644 index 000000000000..f508c192214a --- /dev/null +++ b/pkgs/applications/editors/vscode/extensions/anweber.vscode-httpyac/default.nix @@ -0,0 +1,28 @@ +{ + lib, + vscode-utils, + httpyac, +}: + +let + version = "6.16.6"; +in +vscode-utils.buildVscodeMarketplaceExtension { + mktplcRef = { + name = "vscode-httpyac"; + publisher = "anweber"; + inherit version; + hash = "sha256-GR1DX6td/a75STpfIU0UtOxpNBWCkyzecEZdDMZTy1M="; + }; + + buildInputs = [ httpyac ]; + + meta = { + changelog = "https://github.com/AnWeber/vscode-httpyac/releases/tag/${version}"; + description = "Quickly and easily send REST, Soap, GraphQL, GRPC, MQTT, RabbitMQ and WebSocket requests directly within Visual Studio Code"; + downloadPage = "https://marketplace.visualstudio.com/items?itemName=anweber.vscode-httpyac"; + homepage = "https://github.com/AnWeber/vscode-httpyac/"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ drupol ]; + }; +} diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index 36a9195b9967..75ff861d9b98 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -309,6 +309,8 @@ let }; }; + anweber.vscode-httpyac = callPackage ./anweber.vscode-httpyac { }; + apollographql.vscode-apollo = buildVscodeMarketplaceExtension { mktplcRef = { name = "vscode-apollo";