From 9634ffb193121ad852a6d27865d02f3158890641 Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Wed, 8 Sep 2021 22:52:11 -0400 Subject: [PATCH] add stretchy-spaces for vscode --- flake.nix | 1 + pkgs/stretchy-spaces/default.nix | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 pkgs/stretchy-spaces/default.nix diff --git a/flake.nix b/flake.nix index d740efa..38df402 100644 --- a/flake.nix +++ b/flake.nix @@ -9,6 +9,7 @@ { commander-x16 = pkgs.callPackage ./pkgs/commander-x16 { }; gef = pkgs.callPackage ./pkgs/gef { }; + stretchy-spaces = pkgs.callPackage ./pkgs/stretchy-spaces { }; weevely = pkgs.callPackage ./pkgs/weevely { }; } // (if pkgs.system != "x86_64-linux" then { } else diff --git a/pkgs/stretchy-spaces/default.nix b/pkgs/stretchy-spaces/default.nix new file mode 100644 index 0000000..20a26db --- /dev/null +++ b/pkgs/stretchy-spaces/default.nix @@ -0,0 +1,10 @@ +{ vscode-utils }: + +vscode-utils.buildVscodeMarketplaceExtension { + mktplcRef = { + publisher = "kylepaulsen"; + name = "stretchy-spaces"; + version = "0.1.0"; + sha256 = "sha256-1Ih0wv2RO4I346KSE2vv0y9lUGAYs+vL2lUdwGWy4XY="; + }; +}