Closed KiaraGrouwstra closed 1 year ago
Thanks for reporting this @KiaraGrouwstra. I've used nixpkgs but never actually tried NixOS...
additionally, hashbangs now presume the existence of /bin/bash and /bin/cat as well, which on nixos by default does not exist either.
Oh, yeah. That part seems like something we could search-replace: https://github.com/civicrm/civicrm-buildkit/pull/781
This issue has gone 30 days with no activity, it has been marked stale.
now, the build script
./nix/bin/install-developer.sh
tries to create binaries in/usr/local/bin/
, which on nixos doesn't exist. i tried changing this to/usr/bin/
. additionally, hashbangs now presume the existence of/bin/bash
and/bin/cat
as well, which on nixos by default does not exist either. (fix:sudo ln -s /run/current-system/sw/bin/bash /bin/bash
+sudo ln -s /run/current-system/sw/bin/cat /bin/cat
) it would be nice if our nix build would be compatible with nixos as well, as this might be one of the more common ways of using nix.after following the further instructions up to
loco run
, i end up met with a 404.first the install:
then when i run loco:
then trying the
http://127.0.0.1:8001
in my browser that it mentioned for Apache HTTPD, i get the 404 error page.