159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
109 lines
2.8 KiB
Nix
109 lines
2.8 KiB
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
callPackage,
|
|
jq,
|
|
moreutils,
|
|
cacert,
|
|
makeSetupHook,
|
|
pnpm,
|
|
yq,
|
|
}:
|
|
{
|
|
fetchDeps =
|
|
{
|
|
hash ? "",
|
|
pname,
|
|
pnpmWorkspace ? "",
|
|
prePnpmInstall ? "",
|
|
...
|
|
}@args:
|
|
let
|
|
args' = builtins.removeAttrs args [
|
|
"hash"
|
|
"pname"
|
|
];
|
|
hash' =
|
|
if hash != "" then
|
|
{ outputHash = hash; }
|
|
else
|
|
{
|
|
outputHash = "";
|
|
outputHashAlgo = "sha256";
|
|
};
|
|
installFlags = lib.optionalString (pnpmWorkspace != "") "--filter=${pnpmWorkspace}";
|
|
in
|
|
stdenvNoCC.mkDerivation (finalAttrs: (
|
|
args'
|
|
// {
|
|
name = "${pname}-pnpm-deps";
|
|
|
|
nativeBuildInputs = [
|
|
cacert
|
|
jq
|
|
moreutils
|
|
pnpm
|
|
yq
|
|
];
|
|
|
|
impureEnvVars = lib.fetchers.proxyImpureEnvVars;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
lockfileVersion="$(yq -r .lockfileVersion pnpm-lock.yaml)"
|
|
if [[ ''${lockfileVersion:0:1} -gt ${lib.versions.major pnpm.version} ]]; then
|
|
echo "ERROR: lockfileVersion $lockfileVersion in pnpm-lock.yaml is too new for the provided pnpm version ${lib.versions.major pnpm.version}!"
|
|
exit 1
|
|
fi
|
|
|
|
export HOME=$(mktemp -d)
|
|
pnpm config set store-dir $out
|
|
# Some packages produce platform dependent outputs. We do not want to cache those in the global store
|
|
pnpm config set side-effects-cache false
|
|
# As we pin pnpm versions, we don't really care about updates
|
|
pnpm config set update-notifier false
|
|
# Run any additional pnpm configuration commands that users provide.
|
|
${prePnpmInstall}
|
|
# pnpm is going to warn us about using --force
|
|
# --force allows us to fetch all dependencies including ones that aren't meant for our host platform
|
|
pnpm install \
|
|
--force \
|
|
--ignore-scripts \
|
|
${installFlags} \
|
|
--frozen-lockfile
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
fixupPhase = ''
|
|
runHook preFixup
|
|
|
|
# Remove timestamp and sort the json files
|
|
rm -rf $out/v3/tmp
|
|
for f in $(find $out -name "*.json"); do
|
|
jq --sort-keys "del(.. | .checkedAt?)" $f | sponge $f
|
|
done
|
|
|
|
runHook postFixup
|
|
'';
|
|
|
|
passthru = {
|
|
serve = callPackage ./serve.nix {
|
|
inherit pnpm;
|
|
pnpmDeps = finalAttrs.finalPackage;
|
|
};
|
|
};
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
outputHashMode = "recursive";
|
|
}
|
|
// hash'
|
|
));
|
|
|
|
configHook = makeSetupHook {
|
|
name = "pnpm-config-hook";
|
|
propagatedBuildInputs = [ pnpm ];
|
|
} ./pnpm-config-hook.sh;
|
|
}
|