vscode-extensions.oops418.nix-env-picker: init at 0.0.4

This commit is contained in:
Oops418 2025-03-13 23:36:02 +08:00 committed by kxyang
parent ec67eaf199
commit f13def33bf
No known key found for this signature in database
GPG key ID: 48847907362E02B6
3 changed files with 20 additions and 1 deletions

View file

@ -17711,7 +17711,7 @@
github = "Oops418";
name = "Oops418";
githubId = 93655215;
}
};
oosquare = {
name = "Justin Chen";
email = "oosquare@outlook.com";

View file

@ -3902,6 +3902,8 @@ let
};
};
oops418.nix-env-picker = callPackage ./oops418.nix-env-picker { };
phind.phind = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "phind";

View file

@ -0,0 +1,17 @@
{ lib, vscode-utils }:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "nix-env-picker";
publisher = "io-github-oops418";
version = "0.0.4";
hash = "sha256-LGw7Pd72oVgMqhKPX1dV2EgluX0/4rvKVb7Fx2H6hOI=";
};
meta = {
description = "A Visual Studio Code extension for seamless switching between Nix shells and flakes.";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=io-github-oops418.nix-env-picker";
homepage = "https://github.com/Oops418/nix-env-picker";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.Oops418 ];
};
}