Live location tracking and playback for the game "manhunt"
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Make nix packages use cargo-nextest

Ben C 3f2558de 75fd7580

+7
+2
nix/packages/manhunt-signaling.nix
··· 25 25 chmod +w Cargo.lock 26 26 ''; 27 27 28 + useNextest = true; 29 + 28 30 meta = with lib; { 29 31 description = "Signaling server for Manhunt app"; 30 32 mainProgram = "manhunt-signaling";
+5
nix/packages/manhunt.nix
··· 11 11 copyDesktopItems, 12 12 rustPlatform, 13 13 manhunt-frontend, 14 + cargo-nextest, 14 15 }: 15 16 rustPlatform.buildRustPackage { 16 17 pname = "manhunt"; ··· 52 53 substituteInPlace backend/tauri.conf.json \ 53 54 --replace-fail '"frontendDist": "../frontend/dist"' '"frontendDist": "${manhunt-frontend}"' 54 55 ''; 56 + 57 + useNextest = true; 58 + 59 + cargoTestFlags = "-p manhunt-logic -p manhunt-transport -p manhunt-app"; 55 60 56 61 postInstall = '' 57 62 install -DT backend/icons/128x128@2x.png $out/share/icons/hicolor/256x256@2/apps/manhunt.png