Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
611 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
stdenv,
jq,
hydrogen-web-unwrapped,
conf ? { },
}:
if (conf == { }) then
hydrogen-web-unwrapped
else
stdenv.mkDerivation {
pname = "${hydrogen-web-unwrapped.pname}-wrapped";
inherit (hydrogen-web-unwrapped) version meta;
dontUnpack = true;
nativeBuildInputs = [ jq ];
installPhase = ''
runHook preInstall
mkdir -p $out
ln -s ${hydrogen-web-unwrapped}/* $out
rm $out/config.json
jq -s '.[0] * $conf' "${hydrogen-web-unwrapped}/config.json" --argjson "conf" '${builtins.toJSON conf}' > "$out/config.json"
runHook postInstall
'';
}