mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-05 21:03:40 +00:00
794 B
794 B
nodejsInstallExecutables
Hook for wrapping Node.js executables. Primarily created for a multi-language environment.
Examples
Variables controlling nodejsInstallExecutables
nodejsInstallExecutables Exclusive Variables
makeWrapperArgs
Flags to pass to the call to makeWrapper.
To avoid double-wrapping, this flag can also be accessed in Bash.
stdenv.mkDerivation (finalAttrs: {
#...
dontWrapGApps = true;
postInstall = ''
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
#...
})