MrFoxPro

Results 111 comments of MrFoxPro

https://github.com/vitejs/vite/discussions/10856

I was able to build it like this: ```nix packages.api = let target = "x86_64-unknown-linux-gnu"; denoCache = pkgs.stdenv.mkDerivation { name = "api-deno-cache"; src = ./api; nativeBuildInputs = with pkgs; [...

But it doesn't work this way in Nix Containers. So this is related then: https://github.com/denoland/deno/issues/18764 I was able to bypass it with following hack: ```nix packages.oci-api = nix2c.buildImage { name...

Reproduction: ![deno-compile-bug](https://github.com/denoland/deno/assets/17229619/766e7f7f-6788-4f96-9e7e-1fe2823d70c7)

Ok, with help of discord community I can show this: ``` pkgs.stdenv.mkDerivation rec { pname = "api"; version = "0.0.0-rc1"; src = ./api; __noChroot = true; compilier = pkgs.fetchurl {...

> Native component for "RNAnalogClock" does not exist I have this warning and also red square. [email protected]

@Li357, @MacKentoch, No, im using React native cli with no expo, just react-native

> This [PR](https://github.com/Platonic-Systems/process-compose-flake/pull/10) added an option to disable TUI for all services, using `process-compose.tui = false;` This is per-group property, I meant global

Hm, it's working when running from package, but not from shell: ```nix web = { command = pkgs.nuenv.mkSimpleScript "cmd.nu" "print 'HI'; print $env.PWD "; working_dir = "/home/foxpro/craft/sferadel/next/api"; }; ``` ```...