mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
25 lines
479 B
Nix
25 lines
479 B
Nix
{pkgs, system, nodejs, stdenv}:
|
|
|
|
let
|
|
nodePackages = import ./composition-v10.nix {
|
|
inherit pkgs system nodejs;
|
|
};
|
|
in
|
|
nodePackages // {
|
|
|
|
pnpm = nodePackages.pnpm.override {
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
postInstall = let
|
|
pnpmLibPath = stdenv.lib.makeBinPath [
|
|
nodejs.passthru.python
|
|
nodejs
|
|
];
|
|
in ''
|
|
for prog in $out/bin/*; do
|
|
wrapProgram "$prog" --prefix PATH : ${pnpmLibPath}
|
|
done
|
|
'';
|
|
};
|
|
|
|
}
|