Compare commits
2 Commits
2ee30c177c
...
b6cd2f3cd7
| Author | SHA1 | Date | |
|---|---|---|---|
| b6cd2f3cd7 | |||
| 2f66f25153 |
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"sourceRepo": "https://gitea-external.egads.tutti.syntaxblitz.net/quixos/quixos.git",
|
"sourceRepo": "https://gitea-external.egads.tutti.syntaxblitz.net/quixos/quixos.git",
|
||||||
"sourceCommit": "fa363fa2f4e83d0996c1229ab1ecf9e0541d5d4f",
|
"sourceCommit": "b384206b9c01a9ac50030a583d028b71291bc8c5",
|
||||||
"sourcePath": "quixos-instance/quixos-nix-helpers",
|
"sourcePath": "quixos-instance/quixos-nix-helpers",
|
||||||
"exportName": "quixos-nix-helpers",
|
"exportName": "quixos-nix-helpers",
|
||||||
"mirrorRemote": "https://gitea-external.egads.tutti.syntaxblitz.net/quixos/quixos-nix-helpers.git"
|
"mirrorRemote": "https://gitea-external.egads.tutti.syntaxblitz.net/quixos/quixos-nix-helpers.git"
|
||||||
|
|||||||
@@ -611,6 +611,15 @@ EOF
|
|||||||
else ''
|
else ''
|
||||||
runHook preInstall
|
runHook preInstall
|
||||||
install -Dm755 ${lib.escapeShellArg serverFile} "$out/libexec/${serverLibexecName}/${serverFile}"
|
install -Dm755 ${lib.escapeShellArg serverFile} "$out/libexec/${serverLibexecName}/${serverFile}"
|
||||||
|
# Browser entrypoints are runtime artifacts too. Package build scripts
|
||||||
|
# conventionally emit them as top-level .mjs files in dist/. Install
|
||||||
|
# the complete set so adding an entrypoint cannot produce a descriptor
|
||||||
|
# that resolves successfully but fails when Web Studio opens the file.
|
||||||
|
for browserModule in dist/*.mjs; do
|
||||||
|
if [ -f "$browserModule" ]; then
|
||||||
|
install -Dm644 "$browserModule" "$out/libexec/${serverLibexecName}/$(basename "$browserModule")"
|
||||||
|
fi
|
||||||
|
done
|
||||||
${lib.concatMapStringsSep "\n" installExtraFile extraFiles}
|
${lib.concatMapStringsSep "\n" installExtraFile extraFiles}
|
||||||
mkdir -p "$out/bin"
|
mkdir -p "$out/bin"
|
||||||
cat > "$out/bin/${serverBin}" <<EOF
|
cat > "$out/bin/${serverBin}" <<EOF
|
||||||
|
|||||||
Reference in New Issue
Block a user