vscode-extensions: remove 'with' and normalize lib usage

* Remove 'with'.
  Reasoning: https://github.com/atorres1985-contrib/nixpkgs/commit/451dfa6d84586b5cb83e6a7254689dff66b4523a

* Normalize lib usage in vscode-extensions.
This commit is contained in:
superherointj
2023-03-18 16:40:36 -03:00
parent e5005453d3
commit 9ec72407a4
15 changed files with 344 additions and 343 deletions
@@ -76,13 +76,13 @@ vscode-utils.buildVscodeMarketplaceExtension rec {
fi
'';
meta = with lib; {
meta = {
description = "A Visual Studio Code extension with rich support for the Python language";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-python.python";
homepage = "https://github.com/Microsoft/vscode-python";
changelog = "https://github.com/microsoft/vscode-python/releases";
license = licenses.mit;
license = lib.licenses.mit;
platforms = [ "x86_64-linux" "aarch64-darwin" "x86_64-darwin" ];
maintainers = with maintainers; [ jraygauthier jfchevrette ];
maintainers = [ lib.maintainers.jraygauthier lib.maintainers.jfchevrette ];
};
}