Merge pull request #57829 from roberth/vscode-haskell

vscode-extensions.{language-haskell,hie-server}: init
This commit is contained in:
Robert Hensing 2019-03-18 01:33:09 +01:00 committed by GitHub
commit b3c0c2e989
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,6 +11,19 @@ in
# "${mktplcRef.publisher}.${mktplcRef.name}".
#
rec {
alanz.vscode-hie-server = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "vscode-hie-server";
publisher = "alanz";
version = "0.0.25"; # see the note above
sha256 = "0m21w03v94qxm0i54ki5slh6rg7610zfxinfpngr0hfpgw2nnxvc";
};
meta = {
license = stdenv.lib.licenses.mit;
};
};
bbenoist.Nix = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "Nix";
@ -23,6 +36,18 @@ rec {
};
};
justusadam.language-haskell = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "language-haskell";
publisher = "justusadam";
version = "2.5.0"; # see the note above
sha256 = "10jqj8qw5x6da9l8zhjbra3xcbrwb4cpwc3ygsy29mam5pd8g6b3";
};
meta = {
license = stdenv.lib.licenses.bsd3;
};
};
ms-vscode.cpptools = callPackage ./cpptools {};
ms-python.python = callPackage ./python {};