|
21 | 21 | hashesFile = builtins.fromJSON (builtins.readFile ./hashes.json);
|
22 | 22 | lib = pkgs.lib;
|
23 | 23 | in
|
24 |
| - rec { |
25 |
| - packages.default = pkgs.buildNpmPackage { |
26 |
| - pname = "spacebar-server-ts"; |
27 |
| - name = "spacebar-server-ts"; |
| 24 | + { |
| 25 | + packages = { |
| 26 | + default = pkgs.buildNpmPackage { |
| 27 | + pname = "spacebar-server-ts"; |
| 28 | + name = "spacebar-server-ts"; |
28 | 29 |
|
29 |
| - meta = with lib; { |
30 |
| - description = "Spacebar server, a FOSS reimplementation of the Discord backend."; |
31 |
| - homepage = "https://github.com/spacebarchat/server"; |
32 |
| - license = licenses.agpl3Plus; |
33 |
| - platforms = platforms.all; |
34 |
| - mainProgram = "start-bundle"; |
35 |
| - }; |
| 30 | + meta = with lib; { |
| 31 | + description = "Spacebar server, a FOSS reimplementation of the Discord backend."; |
| 32 | + homepage = "https://github.com/spacebarchat/server"; |
| 33 | + license = licenses.agpl3Plus; |
| 34 | + platforms = platforms.all; |
| 35 | + mainProgram = "start-bundle"; |
| 36 | + }; |
36 | 37 |
|
37 |
| - src = ./.; |
38 |
| - nativeBuildInputs = with pkgs; [ python3 ]; |
39 |
| - npmDepsHash = hashesFile.npmDepsHash; |
40 |
| - makeCacheWritable = true; |
41 |
| - postPatch = '' |
42 |
| - substituteInPlace package.json --replace 'npx patch-package' '${pkgs.nodePackages.patch-package}/bin/patch-package' |
43 |
| - ''; |
44 |
| - installPhase = '' |
45 |
| - runHook preInstall |
46 |
| - set -x |
47 |
| - #remove packages not needed for production, or at least try to... |
48 |
| - npm prune --omit dev --no-save $npmInstallFlags "''${npmInstallFlagsArray[@]}" $npmFlags "''${npmFlagsArray[@]}" |
49 |
| - find node_modules -maxdepth 1 -type d -empty -delete |
| 38 | + src = ./.; |
| 39 | + nativeBuildInputs = with pkgs; [ python3 ]; |
| 40 | + npmDepsHash = hashesFile.npmDepsHash; |
| 41 | + makeCacheWritable = true; |
| 42 | + postPatch = '' |
| 43 | + substituteInPlace package.json --replace 'npx patch-package' '${pkgs.nodePackages.patch-package}/bin/patch-package' |
| 44 | + ''; |
| 45 | + installPhase = '' |
| 46 | + runHook preInstall |
| 47 | + set -x |
| 48 | + #remove packages not needed for production, or at least try to... |
| 49 | + npm prune --omit dev --no-save $npmInstallFlags "''${npmInstallFlagsArray[@]}" $npmFlags "''${npmFlagsArray[@]}" |
| 50 | + find node_modules -maxdepth 1 -type d -empty -delete |
50 | 51 |
|
| 52 | + mkdir -p $out |
| 53 | + cp -r assets dist node_modules package.json $out/ |
| 54 | + for i in dist/**/start.js |
| 55 | + do |
| 56 | + makeWrapper ${pkgs.nodejs}/bin/node $out/bin/start-`dirname ''${i/dist\//}` --prefix NODE_PATH : $out/node_modules --add-flags $out/$i |
| 57 | + done |
51 | 58 |
|
52 |
| - #mkdir -p $out/node_modules/ |
53 |
| - #cp -r node_modules/* $out/node_modules/ |
54 |
| - #cp -r dist/ $out/node_modules/@spacebar |
55 |
| - #for i in dist/**/start.js |
56 |
| - #do |
57 |
| - # makeWrapper ${pkgs.nodejs-slim}/bin/node $out/bin/start-`dirname ''${i/dist\//}` --prefix NODE_PATH : $out/node_modules --add-flags $out/node_modules/@spacebar`dirname ''${i/dist/}`/start.js |
58 |
| - #done |
59 |
| - #set +x |
60 |
| - #substituteInPlace package.json --replace 'dist/' 'node_modules/@spacebar/' |
61 |
| - #find $out/node_modules/@spacebar/ -type f -name "*.js" | while read srcFile; do |
62 |
| - # echo Patching imports in ''${srcFile/$out\/node_modules\/@spacebar//}... |
63 |
| - # substituteInPlace $srcFile --replace 'require("./' 'require(__dirname + "/' |
64 |
| - # substituteInPlace $srcFile --replace 'require("../' 'require(__dirname + "/../' |
65 |
| - # substituteInPlace $srcFile --replace ', "assets"' ', "..", "assets"' |
66 |
| - # #substituteInPlace $srcFile --replace 'require("@spacebar/' 'require(" |
67 |
| - #done |
68 |
| - #set -x |
69 |
| - #cp -r assets/ $out/ |
70 |
| - #cp package.json $out/ |
71 |
| - #rm -v $out/assets/openapi.json |
72 |
| - ##rm -v $out/assets/schemas.json |
| 59 | + set +x |
| 60 | + runHook postInstall |
| 61 | + ''; |
| 62 | + }; |
73 | 63 |
|
74 |
| - mkdir -p $out |
75 |
| - cp -r assets dist node_modules package.json $out/ |
76 |
| - for i in dist/**/start.js |
77 |
| - do |
78 |
| - makeWrapper ${pkgs.nodejs-slim}/bin/node $out/bin/start-`dirname ''${i/dist\//}` --prefix NODE_PATH : $out/node_modules --add-flags $out/$i |
79 |
| - done |
| 64 | + update-nix = pkgs.writeShellApplication { |
| 65 | + name = "update-nix"; |
| 66 | + runtimeInputs = with pkgs; [ |
| 67 | + prefetch-npm-deps |
| 68 | + nix |
| 69 | + bash |
| 70 | + jq |
| 71 | + git |
| 72 | + nix-output-monitor |
| 73 | + ]; |
| 74 | + text = '' |
| 75 | + nix flake update --extra-experimental-features 'nix-command flakes' |
| 76 | + DEPS_HASH=$(prefetch-npm-deps package-lock.json) |
| 77 | + TMPFILE=$(mktemp) |
| 78 | + jq '.npmDepsHash = "'"$DEPS_HASH"'"' hashes.json > "$TMPFILE" |
| 79 | + mv -- "$TMPFILE" hashes.json |
80 | 80 |
|
81 |
| - #debug utils: |
82 |
| - #cp $out/node_modules/@spacebar/ $out/build_output -r |
83 |
| - set +x |
84 |
| - runHook postInstall |
85 |
| - ''; |
| 81 | + nom build .# --extra-experimental-features 'nix-command flakes' || exit $? |
| 82 | + git add hashes.json flake.lock flake.nix |
| 83 | + ''; |
| 84 | + }; |
86 | 85 | };
|
| 86 | + |
87 | 87 | devShell = pkgs.mkShell {
|
88 | 88 | buildInputs = with pkgs; [
|
89 | 89 | nodejs
|
|
0 commit comments