fix: use builtins.path for src in flake.nix
Build Admin / build (push) Failing after 11s Details

This commit is contained in:
Seth Call 2026-03-10 01:00:44 -05:00
parent 6cc8d87637
commit dba5c9efe2
1 changed files with 2 additions and 3 deletions

View File

@ -88,11 +88,10 @@
# 4. Source code derivation
src = pkgs.stdenv.mkDerivation {
name = "jam-admin-src";
src = ../.;
src = builtins.path { path = ./..; name = "jam-cloud-root"; };
installPhase = ''
ls -R ../
mkdir -p $out/jam-cloud
cp -r ../. $out/jam-cloud/
cp -r . $out/jam-cloud/
'';
};