| 
						 
						
						
						
						 
					 | 
					 | 
					@@ -1,6 +1,6 @@
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					# This file originates from node2nix
 | 
					 | 
					 | 
					 | 
					# This file originates from node2nix
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					{lib, stdenv, nodejs, python2, pkgs, libtool, runCommand, writeTextFile, writeShellScript}:
 | 
					 | 
					 | 
					 | 
					{ lib, stdenv, nodejs, python2, pkgs, libtool, runCommand, writeTextFile, writeShellScript }:
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					let
 | 
					 | 
					 | 
					 | 
					let
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  # Workaround to cope with utillinux in Nixpkgs 20.09 and util-linux in Nixpkgs master
 | 
					 | 
					 | 
					 | 
					  # Workaround to cope with utillinux in Nixpkgs 20.09 and util-linux in Nixpkgs master
 | 
				
			
			
		
	
	
		
		
			
				
					
					| 
						
					 | 
					 | 
					@@ -9,7 +9,7 @@ let
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  python = if nodejs ? python then nodejs.python else python2;
 | 
					 | 
					 | 
					 | 
					  python = if nodejs ? python then nodejs.python else python2;
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  # Create a tar wrapper that filters all the 'Ignoring unknown extended header keyword' noise
 | 
					 | 
					 | 
					 | 
					  # Create a tar wrapper that filters all the 'Ignoring unknown extended header keyword' noise
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  tarWrapper = runCommand "tarWrapper" {} ''
 | 
					 | 
					 | 
					 | 
					  tarWrapper = runCommand "tarWrapper" { } ''
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    mkdir -p $out/bin
 | 
					 | 
					 | 
					 | 
					    mkdir -p $out/bin
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    cat > $out/bin/tar <<EOF
 | 
					 | 
					 | 
					 | 
					    cat > $out/bin/tar <<EOF
 | 
				
			
			
		
	
	
		
		
			
				
					
					| 
						
					 | 
					 | 
					@@ -90,26 +90,28 @@ let
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  # Bundle the dependencies of the package
 | 
					 | 
					 | 
					 | 
					  # Bundle the dependencies of the package
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  #
 | 
					 | 
					 | 
					 | 
					  #
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  # Only include dependencies if they don't exist. They may also be bundled in the package.
 | 
					 | 
					 | 
					 | 
					  # Only include dependencies if they don't exist. They may also be bundled in the package.
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  includeDependencies = {dependencies}:
 | 
					 | 
					 | 
					 | 
					  includeDependencies = { dependencies }:
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    lib.optionalString (dependencies != []) (
 | 
					 | 
					 | 
					 | 
					    lib.optionalString (dependencies != [ ]) (
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					      ''
 | 
					 | 
					 | 
					 | 
					      ''
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        mkdir -p node_modules
 | 
					 | 
					 | 
					 | 
					        mkdir -p node_modules
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        cd node_modules
 | 
					 | 
					 | 
					 | 
					        cd node_modules
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					      ''
 | 
					 | 
					 | 
					 | 
					      ''
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					      + (lib.concatMapStrings (dependency:
 | 
					 | 
					 | 
					 | 
					      + (lib.concatMapStrings
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        ''
 | 
					 | 
					 | 
					 | 
					        (dependency:
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          if [ ! -e "${dependency.packageName}" ]; then
 | 
					 | 
					 | 
					 | 
					          ''
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					              ${composePackage dependency}
 | 
					 | 
					 | 
					 | 
					            if [ ! -e "${dependency.packageName}" ]; then
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          fi
 | 
					 | 
					 | 
					 | 
					                ${composePackage dependency}
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        ''
 | 
					 | 
					 | 
					 | 
					            fi
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					      ) dependencies)
 | 
					 | 
					 | 
					 | 
					          ''
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					        )
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					        dependencies)
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					      + ''
 | 
					 | 
					 | 
					 | 
					      + ''
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        cd ..
 | 
					 | 
					 | 
					 | 
					        cd ..
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					      ''
 | 
					 | 
					 | 
					 | 
					      ''
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    );
 | 
					 | 
					 | 
					 | 
					    );
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  # Recursively composes the dependencies of a package
 | 
					 | 
					 | 
					 | 
					  # Recursively composes the dependencies of a package
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  composePackage = { name, packageName, src, dependencies ? [], ... }@args:
 | 
					 | 
					 | 
					 | 
					  composePackage = { packageName, src, dependencies ? [ ], ... }:
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    builtins.addErrorContext "while evaluating node package '${packageName}'" ''
 | 
					 | 
					 | 
					 | 
					    builtins.addErrorContext "while evaluating node package '${packageName}'" ''
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					      installPackage "${packageName}" "${src}"
 | 
					 | 
					 | 
					 | 
					      installPackage "${packageName}" "${src}"
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					      ${includeDependencies { inherit dependencies; }}
 | 
					 | 
					 | 
					 | 
					      ${includeDependencies { inherit dependencies; }}
 | 
				
			
			
		
	
	
		
		
			
				
					
					| 
						
					 | 
					 | 
					@@ -117,7 +119,7 @@ let
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					      ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
 | 
					 | 
					 | 
					 | 
					      ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    '';
 | 
					 | 
					 | 
					 | 
					    '';
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  pinpointDependencies = {dependencies, production}:
 | 
					 | 
					 | 
					 | 
					  pinpointDependencies = { dependencies, production }:
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    let
 | 
					 | 
					 | 
					 | 
					    let
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					      pinpointDependenciesFromPackageJSON = writeTextFile {
 | 
					 | 
					 | 
					 | 
					      pinpointDependenciesFromPackageJSON = writeTextFile {
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        name = "pinpointDependencies.js";
 | 
					 | 
					 | 
					 | 
					        name = "pinpointDependencies.js";
 | 
				
			
			
		
	
	
		
		
			
				
					
					| 
						
					 | 
					 | 
					@@ -194,7 +196,7 @@ let
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  # dependencies in the package.json file to the versions that are actually
 | 
					 | 
					 | 
					 | 
					  # dependencies in the package.json file to the versions that are actually
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  # being used.
 | 
					 | 
					 | 
					 | 
					  # being used.
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  pinpointDependenciesOfPackage = { packageName, dependencies ? [], production ? true, ... }@args:
 | 
					 | 
					 | 
					 | 
					  pinpointDependenciesOfPackage = { packageName, dependencies ? [ ], production ? true, ... }:
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    ''
 | 
					 | 
					 | 
					 | 
					    ''
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					      if [ -d "${packageName}" ]
 | 
					 | 
					 | 
					 | 
					      if [ -d "${packageName}" ]
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					      then
 | 
					 | 
					 | 
					 | 
					      then
 | 
				
			
			
		
	
	
		
		
			
				
					
					| 
						
					 | 
					 | 
					@@ -207,7 +209,7 @@ let
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  # Extract the Node.js source code which is used to compile packages with
 | 
					 | 
					 | 
					 | 
					  # Extract the Node.js source code which is used to compile packages with
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  # native bindings
 | 
					 | 
					 | 
					 | 
					  # native bindings
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  nodeSources = runCommand "node-sources" {} ''
 | 
					 | 
					 | 
					 | 
					  nodeSources = runCommand "node-sources" { } ''
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    tar --no-same-owner --no-same-permissions -xf ${nodejs.src}
 | 
					 | 
					 | 
					 | 
					    tar --no-same-owner --no-same-permissions -xf ${nodejs.src}
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    mv node-* $out
 | 
					 | 
					 | 
					 | 
					    mv node-* $out
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  '';
 | 
					 | 
					 | 
					 | 
					  '';
 | 
				
			
			
		
	
	
		
		
			
				
					
					| 
						
					 | 
					 | 
					@@ -414,64 +416,64 @@ let
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    '';
 | 
					 | 
					 | 
					 | 
					    '';
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  };
 | 
					 | 
					 | 
					 | 
					  };
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  prepareAndInvokeNPM = {packageName, bypassCache, reconstructLock, npmFlags, production}:
 | 
					 | 
					 | 
					 | 
					  prepareAndInvokeNPM = { packageName, bypassCache, reconstructLock, npmFlags, production }:
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    let
 | 
					 | 
					 | 
					 | 
					    let
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					      forceOfflineFlag = if bypassCache then "--offline" else "--registry http://www.example.com";
 | 
					 | 
					 | 
					 | 
					      forceOfflineFlag = if bypassCache then "--offline" else "--registry http://www.example.com";
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    in
 | 
					 | 
					 | 
					 | 
					    in
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    ''
 | 
					 | 
					 | 
					 | 
					    ''
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        # Pinpoint the versions of all dependencies to the ones that are actually being used
 | 
					 | 
					 | 
					 | 
					      # Pinpoint the versions of all dependencies to the ones that are actually being used
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        echo "pinpointing versions of dependencies..."
 | 
					 | 
					 | 
					 | 
					      echo "pinpointing versions of dependencies..."
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        source $pinpointDependenciesScriptPath
 | 
					 | 
					 | 
					 | 
					      source $pinpointDependenciesScriptPath
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        # Patch the shebangs of the bundled modules to prevent them from
 | 
					 | 
					 | 
					 | 
					      # Patch the shebangs of the bundled modules to prevent them from
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        # calling executables outside the Nix store as much as possible
 | 
					 | 
					 | 
					 | 
					      # calling executables outside the Nix store as much as possible
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        patchShebangs .
 | 
					 | 
					 | 
					 | 
					      patchShebangs .
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        # Deploy the Node.js package by running npm install. Since the
 | 
					 | 
					 | 
					 | 
					      # Deploy the Node.js package by running npm install. Since the
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        # dependencies have been provided already by ourselves, it should not
 | 
					 | 
					 | 
					 | 
					      # dependencies have been provided already by ourselves, it should not
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        # attempt to install them again, which is good, because we want to make
 | 
					 | 
					 | 
					 | 
					      # attempt to install them again, which is good, because we want to make
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        # it Nix's responsibility. If it needs to install any dependencies
 | 
					 | 
					 | 
					 | 
					      # it Nix's responsibility. If it needs to install any dependencies
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        # anyway (e.g. because the dependency parameters are
 | 
					 | 
					 | 
					 | 
					      # anyway (e.g. because the dependency parameters are
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        # incomplete/incorrect), it fails.
 | 
					 | 
					 | 
					 | 
					      # incomplete/incorrect), it fails.
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        #
 | 
					 | 
					 | 
					 | 
					      #
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        # The other responsibilities of NPM are kept -- version checks, build
 | 
					 | 
					 | 
					 | 
					      # The other responsibilities of NPM are kept -- version checks, build
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        # steps, postprocessing etc.
 | 
					 | 
					 | 
					 | 
					      # steps, postprocessing etc.
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        export HOME=$TMPDIR
 | 
					 | 
					 | 
					 | 
					      export HOME=$TMPDIR
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        cd "${packageName}"
 | 
					 | 
					 | 
					 | 
					      cd "${packageName}"
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        runHook preRebuild
 | 
					 | 
					 | 
					 | 
					      runHook preRebuild
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        ${lib.optionalString bypassCache ''
 | 
					 | 
					 | 
					 | 
					      ${lib.optionalString bypassCache ''
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          ${lib.optionalString reconstructLock ''
 | 
					 | 
					 | 
					 | 
					        ${lib.optionalString reconstructLock ''
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					            if [ -f package-lock.json ]
 | 
					 | 
					 | 
					 | 
					          if [ -f package-lock.json ]
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					            then
 | 
					 | 
					 | 
					 | 
					          then
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					                echo "WARNING: Reconstruct lock option enabled, but a lock file already exists!"
 | 
					 | 
					 | 
					 | 
					              echo "WARNING: Reconstruct lock option enabled, but a lock file already exists!"
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					                echo "This will most likely result in version mismatches! We will remove the lock file and regenerate it!"
 | 
					 | 
					 | 
					 | 
					              echo "This will most likely result in version mismatches! We will remove the lock file and regenerate it!"
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					                rm package-lock.json
 | 
					 | 
					 | 
					 | 
					              rm package-lock.json
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					            else
 | 
					 | 
					 | 
					 | 
					          else
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					                echo "No package-lock.json file found, reconstructing..."
 | 
					 | 
					 | 
					 | 
					              echo "No package-lock.json file found, reconstructing..."
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					            fi
 | 
					 | 
					 | 
					 | 
					          fi
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					            node ${reconstructPackageLock}
 | 
					 | 
					 | 
					 | 
					          node ${reconstructPackageLock}
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          ''}
 | 
					 | 
					 | 
					 | 
					 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          node ${addIntegrityFieldsScript}
 | 
					 | 
					 | 
					 | 
					 | 
				
			
			
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        ''}
 | 
					 | 
					 | 
					 | 
					        ''}
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        npm ${forceOfflineFlag} --nodedir=${nodeSources} ${npmFlags} ${lib.optionalString production "--production"} rebuild
 | 
					 | 
					 | 
					 | 
					        node ${addIntegrityFieldsScript}
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					      ''}
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        runHook postRebuild
 | 
					 | 
					 | 
					 | 
					      npm ${forceOfflineFlag} --nodedir=${nodeSources} ${npmFlags} ${lib.optionalString production "--production"} rebuild
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        if [ "''${dontNpmInstall-}" != "1" ]
 | 
					 | 
					 | 
					 | 
					      runHook postRebuild
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        then
 | 
					 | 
					 | 
					 | 
					 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					            # NPM tries to download packages even when they already exist if npm-shrinkwrap is used.
 | 
					 | 
					 | 
					 | 
					 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					            rm -f npm-shrinkwrap.json
 | 
					 | 
					 | 
					 | 
					 | 
				
			
			
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					            npm ${forceOfflineFlag} --nodedir=${nodeSources} --no-bin-links --ignore-scripts ${npmFlags} ${lib.optionalString production "--production"} install
 | 
					 | 
					 | 
					 | 
					      if [ "''${dontNpmInstall-}" != "1" ]
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        fi
 | 
					 | 
					 | 
					 | 
					      then
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					          # NPM tries to download packages even when they already exist if npm-shrinkwrap is used.
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					          rm -f npm-shrinkwrap.json
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        # Link executables defined in package.json
 | 
					 | 
					 | 
					 | 
					          npm ${forceOfflineFlag} --nodedir=${nodeSources} --no-bin-links --ignore-scripts ${npmFlags} ${lib.optionalString production "--production"} install
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        node ${linkBinsScript}
 | 
					 | 
					 | 
					 | 
					      fi
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					      # Link executables defined in package.json
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					      node ${linkBinsScript}
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    '';
 | 
					 | 
					 | 
					 | 
					    '';
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  # Builds and composes an NPM package including all its dependencies
 | 
					 | 
					 | 
					 | 
					  # Builds and composes an NPM package including all its dependencies
 | 
				
			
			
		
	
	
		
		
			
				
					
					| 
						
					 | 
					 | 
					@@ -479,8 +481,7 @@ let
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    { name
 | 
					 | 
					 | 
					 | 
					    { name
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , packageName
 | 
					 | 
					 | 
					 | 
					    , packageName
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , version ? null
 | 
					 | 
					 | 
					 | 
					    , version ? null
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , dependencies ? []
 | 
					 | 
					 | 
					 | 
					    , buildInputs ? [ ]
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , buildInputs ? []
 | 
					 | 
					 | 
					 | 
					 | 
				
			
			
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , production ? true
 | 
					 | 
					 | 
					 | 
					    , production ? true
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , npmFlags ? ""
 | 
					 | 
					 | 
					 | 
					    , npmFlags ? ""
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , dontNpmInstall ? false
 | 
					 | 
					 | 
					 | 
					    , dontNpmInstall ? false
 | 
				
			
			
		
	
	
		
		
			
				
					
					| 
						
					 | 
					 | 
					@@ -490,8 +491,9 @@ let
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , dontStrip ? true
 | 
					 | 
					 | 
					 | 
					    , dontStrip ? true
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , unpackPhase ? "true"
 | 
					 | 
					 | 
					 | 
					    , unpackPhase ? "true"
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , buildPhase ? "true"
 | 
					 | 
					 | 
					 | 
					    , buildPhase ? "true"
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , meta ? {}
 | 
					 | 
					 | 
					 | 
					    , meta ? { }
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , ... }@args:
 | 
					 | 
					 | 
					 | 
					    , ...
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					    }@args:
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    let
 | 
					 | 
					 | 
					 | 
					    let
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					      extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "preRebuild" "unpackPhase" "buildPhase" "meta" ];
 | 
					 | 
					 | 
					 | 
					      extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "preRebuild" "unpackPhase" "buildPhase" "meta" ];
 | 
				
			
			
		
	
	
		
		
			
				
					
					| 
						
					 | 
					 | 
					@@ -572,8 +574,8 @@ let
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , packageName
 | 
					 | 
					 | 
					 | 
					    , packageName
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , version ? null
 | 
					 | 
					 | 
					 | 
					    , version ? null
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , src
 | 
					 | 
					 | 
					 | 
					    , src
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , dependencies ? []
 | 
					 | 
					 | 
					 | 
					    , dependencies ? [ ]
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , buildInputs ? []
 | 
					 | 
					 | 
					 | 
					    , buildInputs ? [ ]
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , production ? true
 | 
					 | 
					 | 
					 | 
					    , production ? true
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , npmFlags ? ""
 | 
					 | 
					 | 
					 | 
					    , npmFlags ? ""
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , dontNpmInstall ? false
 | 
					 | 
					 | 
					 | 
					    , dontNpmInstall ? false
 | 
				
			
			
		
	
	
		
		
			
				
					
					| 
						
					 | 
					 | 
					@@ -582,78 +584,70 @@ let
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , dontStrip ? true
 | 
					 | 
					 | 
					 | 
					    , dontStrip ? true
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , unpackPhase ? "true"
 | 
					 | 
					 | 
					 | 
					    , unpackPhase ? "true"
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , buildPhase ? "true"
 | 
					 | 
					 | 
					 | 
					    , buildPhase ? "true"
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , ... }@args:
 | 
					 | 
					 | 
					 | 
					    , ...
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					    }@args:
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    let
 | 
					 | 
					 | 
					 | 
					    let
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					      extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" ];
 | 
					 | 
					 | 
					 | 
					      extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" ];
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    in
 | 
					 | 
					 | 
					 | 
					    in
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					      stdenv.mkDerivation ({
 | 
					 | 
					 | 
					 | 
					    stdenv.mkDerivation ({
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        name = "node-dependencies-${name}${if version == null then "" else "-${version}"}";
 | 
					 | 
					 | 
					 | 
					      name = "node-dependencies-${name}${if version == null then "" else "-${version}"}";
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        buildInputs = [ tarWrapper python nodejs ]
 | 
					 | 
					 | 
					 | 
					      buildInputs = [ tarWrapper python nodejs ]
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          ++ lib.optional (stdenv.isLinux) utillinux
 | 
					 | 
					 | 
					 | 
					        ++ lib.optional (stdenv.isLinux) utillinux
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          ++ lib.optional (stdenv.isDarwin) libtool
 | 
					 | 
					 | 
					 | 
					        ++ lib.optional (stdenv.isDarwin) libtool
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          ++ buildInputs;
 | 
					 | 
					 | 
					 | 
					        ++ buildInputs;
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        inherit dontStrip; # Stripping may fail a build for some package deployments
 | 
					 | 
					 | 
					 | 
					      inherit dontStrip; # Stripping may fail a build for some package deployments
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        inherit dontNpmInstall unpackPhase buildPhase;
 | 
					 | 
					 | 
					 | 
					      inherit dontNpmInstall unpackPhase buildPhase;
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        includeScript = includeDependencies { inherit dependencies; };
 | 
					 | 
					 | 
					 | 
					      includeScript = includeDependencies { inherit dependencies; };
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        pinpointDependenciesScript = pinpointDependenciesOfPackage args;
 | 
					 | 
					 | 
					 | 
					      pinpointDependenciesScript = pinpointDependenciesOfPackage args;
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        passAsFile = [ "includeScript" "pinpointDependenciesScript" ];
 | 
					 | 
					 | 
					 | 
					      passAsFile = [ "includeScript" "pinpointDependenciesScript" ];
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        installPhase = ''
 | 
					 | 
					 | 
					 | 
					      installPhase = ''
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          source ${installPackage}
 | 
					 | 
					 | 
					 | 
					        source ${installPackage}
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          mkdir -p $out/${packageName}
 | 
					 | 
					 | 
					 | 
					        mkdir -p $out/${packageName}
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          cd $out/${packageName}
 | 
					 | 
					 | 
					 | 
					        cd $out/${packageName}
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          source $includeScriptPath
 | 
					 | 
					 | 
					 | 
					        source $includeScriptPath
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          # Create fake package.json to make the npm commands work properly
 | 
					 | 
					 | 
					 | 
					        # Create fake package.json to make the npm commands work properly
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          cp ${src}/package.json .
 | 
					 | 
					 | 
					 | 
					        cp ${src}/package.json .
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          chmod 644 package.json
 | 
					 | 
					 | 
					 | 
					        chmod 644 package.json
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          ${lib.optionalString bypassCache ''
 | 
					 | 
					 | 
					 | 
					        ${lib.optionalString bypassCache ''
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					            if [ -f ${src}/package-lock.json ]
 | 
					 | 
					 | 
					 | 
					          if [ -f ${src}/package-lock.json ]
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					            then
 | 
					 | 
					 | 
					 | 
					          then
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					                cp ${src}/package-lock.json .
 | 
					 | 
					 | 
					 | 
					              cp ${src}/package-lock.json .
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					                chmod 644 package-lock.json
 | 
					 | 
					 | 
					 | 
					              chmod 644 package-lock.json
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					            fi
 | 
					 | 
					 | 
					 | 
					          fi
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          ''}
 | 
					 | 
					 | 
					 | 
					        ''}
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          # Go to the parent folder to make sure that all packages are pinpointed
 | 
					 | 
					 | 
					 | 
					        # Go to the parent folder to make sure that all packages are pinpointed
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          cd ..
 | 
					 | 
					 | 
					 | 
					        cd ..
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
 | 
					 | 
					 | 
					 | 
					        ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          ${prepareAndInvokeNPM { inherit packageName bypassCache reconstructLock npmFlags production; }}
 | 
					 | 
					 | 
					 | 
					        ${prepareAndInvokeNPM { inherit packageName bypassCache reconstructLock npmFlags production; }}
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          # Expose the executables that were installed
 | 
					 | 
					 | 
					 | 
					        # Expose the executables that were installed
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          cd ..
 | 
					 | 
					 | 
					 | 
					        cd ..
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
 | 
					 | 
					 | 
					 | 
					        ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          mv ${packageName} lib
 | 
					 | 
					 | 
					 | 
					        mv ${packageName} lib
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					          ln -s $out/lib/node_modules/.bin $out/bin
 | 
					 | 
					 | 
					 | 
					        ln -s $out/lib/node_modules/.bin $out/bin
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        '';
 | 
					 | 
					 | 
					 | 
					      '';
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					      } // extraArgs);
 | 
					 | 
					 | 
					 | 
					    } // extraArgs);
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  # Builds a development shell
 | 
					 | 
					 | 
					 | 
					  # Builds a development shell
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					  buildNodeShell =
 | 
					 | 
					 | 
					 | 
					  buildNodeShell =
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    { name
 | 
					 | 
					 | 
					 | 
					    { name
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , packageName
 | 
					 | 
					 | 
					 | 
					 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , version ? null
 | 
					 | 
					 | 
					 | 
					    , version ? null
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , src
 | 
					 | 
					 | 
					 | 
					    , dependencies ? [ ]
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , dependencies ? []
 | 
					 | 
					 | 
					 | 
					    , buildInputs ? [ ]
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , buildInputs ? []
 | 
					 | 
					 | 
					 | 
					    , ...
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , production ? true
 | 
					 | 
					 | 
					 | 
					    }@args:
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , npmFlags ? ""
 | 
					 | 
					 | 
					 | 
					 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , dontNpmInstall ? false
 | 
					 | 
					 | 
					 | 
					 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , bypassCache ? false
 | 
					 | 
					 | 
					 | 
					 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , reconstructLock ? false
 | 
					 | 
					 | 
					 | 
					 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , dontStrip ? true
 | 
					 | 
					 | 
					 | 
					 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , unpackPhase ? "true"
 | 
					 | 
					 | 
					 | 
					 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , buildPhase ? "true"
 | 
					 | 
					 | 
					 | 
					 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    , ... }@args:
 | 
					 | 
					 | 
					 | 
					 | 
				
			
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    let
 | 
					 | 
					 | 
					 | 
					    let
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					      nodeDependencies = buildNodeDependencies args;
 | 
					 | 
					 | 
					 | 
					      nodeDependencies = buildNodeDependencies args;
 | 
				
			
			
		
	
	
		
		
			
				
					
					| 
						
					 | 
					 | 
					@@ -675,7 +669,7 @@ let
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					      # Provide the dependencies in a development shell through the NODE_PATH environment variable
 | 
					 | 
					 | 
					 | 
					      # Provide the dependencies in a development shell through the NODE_PATH environment variable
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					      inherit nodeDependencies;
 | 
					 | 
					 | 
					 | 
					      inherit nodeDependencies;
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					      shellHook = lib.optionalString (dependencies != []) ''
 | 
					 | 
					 | 
					 | 
					      shellHook = lib.optionalString (dependencies != [ ]) ''
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        export NODE_PATH=${nodeDependencies}/lib/node_modules
 | 
					 | 
					 | 
					 | 
					        export NODE_PATH=${nodeDependencies}/lib/node_modules
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        export PATH="${nodeDependencies}/bin:$PATH"
 | 
					 | 
					 | 
					 | 
					        export PATH="${nodeDependencies}/bin:$PATH"
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					      '';
 | 
					 | 
					 | 
					 | 
					      '';
 | 
				
			
			
		
	
	
		
		
			
				
					
					| 
						
					 | 
					 | 
					 
 |