Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: cff7364526da
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 705986f5a986
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on May 18, 2019

  1. vscode-extensions.justusadam.language-haskell: init at 2.5.0

    (cherry picked from commit 2864f5a)
    roberth authored and rycee committed May 18, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    gaborbernat Bernát Gábor
    Copy the full SHA
    7a4d1d0 View commit details
  2. vscode-extensions.alanz.vscode-hie-server: init at 0.0.25

    (cherry picked from commit 340e214)
    roberth authored and rycee committed May 18, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    gaborbernat Bernát Gábor
    Copy the full SHA
    4e57c5e View commit details

Commits on May 19, 2019

  1. Merge pull request #61692 from rycee/vscode-haskell

    Backport vscode haskell extensions to 19.03
    worldofpeace authored May 19, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    gaborbernat Bernát Gábor
    Copy the full SHA
    705986f View commit details
Showing with 25 additions and 0 deletions.
  1. +25 −0 pkgs/misc/vscode-extensions/default.nix
25 changes: 25 additions & 0 deletions pkgs/misc/vscode-extensions/default.nix
Original file line number Diff line number Diff line change
@@ -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 {};