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

Commits on Jan 19, 2021

  1. Verified

    This commit was signed with the committer’s verified signature.
    SamirHafez Samir Hafez
    Copy the full SHA
    449100b View commit details
  2. Merge pull request #106449 from SamirHafez/yaml-language-server-depen…

    …dency
    
    yaml-language-server: Fails to start due to missing `prettier` dependency
    SuperSandro2000 authored Jan 19, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7539f48 View commit details
Showing with 8 additions and 0 deletions.
  1. +8 −0 pkgs/development/node-packages/default.nix
8 changes: 8 additions & 0 deletions pkgs/development/node-packages/default.nix
Original file line number Diff line number Diff line change
@@ -273,5 +273,13 @@ let
echo /var/lib/thelounge > $out/lib/node_modules/thelounge/.thelounge_home
'';
};

yaml-language-server = super.yaml-language-server.override {
nativeBuildInputs = [ pkgs.makeWrapper ];
postInstall = ''
wrapProgram "$out/bin/yaml-language-server" \
--prefix NODE_PATH : ${self.prettier}/lib/node_modules
'';
};
};
in self