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="; + }; +}