Skip to content
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c5c31ef91a3d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b3c0c2e989ed
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 17, 2019

  1. Copy the full SHA
    2864f5a View commit details
  2. Copy the full SHA
    340e214 View commit details

Commits on Mar 18, 2019

  1. Merge pull request #57829 from roberth/vscode-haskell

    vscode-extensions.{language-haskell,hie-server}: init
    roberth authored Mar 18, 2019
    Copy the full SHA
    b3c0c2e 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 {};