mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-23 14:31:55 +03:00
48 lines
1.3 KiB
Nix
48 lines
1.3 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
dream2nix,
|
|
...
|
|
}: let
|
|
l = lib // builtins;
|
|
|
|
cfg = config.nodejs-devshell;
|
|
|
|
nodeModulesDir = "${cfg.nodeModules.public}/lib/node_modules/${config.name}/node_modules";
|
|
in {
|
|
imports = [
|
|
./interface.nix
|
|
dream2nix.modules.drv-parts.mkDerivation
|
|
dream2nix.modules.drv-parts.nodejs-package-lock
|
|
];
|
|
|
|
nodejs-devshell.nodeModules = {
|
|
imports = [
|
|
{inherit (config) nodejs-package-lock name version;}
|
|
{mkDerivation.src = l.mkForce null;}
|
|
];
|
|
};
|
|
|
|
# rsync the node_modules folder
|
|
# - tracks node-modules store path via .dream2nix/.node_modules_id
|
|
# - omits copying if store path did not change
|
|
# - if store path changes, only replaces updated files
|
|
# - rsync can be restarted from any point, if failed or aborted mid execution.
|
|
# Options:
|
|
# -a -> all files recursive, preserve symlinks, etc.
|
|
# --delete -> removes deleted files
|
|
# --chmod=+ug+w -> make folder writeable by user+group
|
|
mkDerivation.shellHook = ''
|
|
ID=${nodeModulesDir}
|
|
currID=$(cat .dream2nix/.node_modules_id 2> /dev/null)
|
|
|
|
mkdir -p .dream2nix
|
|
if [[ "$ID" != "$currID" || ! -d "node_modules" ]];
|
|
then
|
|
${config.deps.rsync}/bin/rsync -a --chmod=ug+w --delete ${nodeModulesDir}/ ./node_modules/
|
|
echo -n $ID > .dream2nix/.node_modules_id
|
|
echo "Ok: node_modules updated"
|
|
fi
|
|
'';
|
|
}
|