Sridhar Ratnakumar
Sridhar Ratnakumar
> A generic option to pass through CLI options to Nix would be nice In `clap`, this can be achieved using the `last` parameter: https://docs.rs/clap/latest/clap/struct.Arg.html#method.last That's what `nixci` does: https://github.com/srid/nixci/blob/efc77c8794e5972617874edd96afa8dd4f1a75b2/src/cli.rs#L74-L80
I noticed a related issue: two services were trying to create `./data` at the same time and failing. That should be somehow prevented as well.
> First time I run it, process-compose exits immediately Do you have logs from the first run? The log you pasted above seems to be from second run.
Got all the dependencies building, as well as the pandoc sources to build, but the `installPhase` is failing: ``` $ nix build -L ... pandoc> Running phase: installPhase pandoc> Installing...
It is probably something to do with this: https://github.com/jgm/pandoc/blob/2f36df65e6b8aa9b12551b3773d55a855c24a03d/pandoc-cli/pandoc-cli.cabal#L17-L21 And how https://github.com/NixOS/cabal2nix (which `haskell-flake`, via `nixpkgs`, uses) handles it.
Testing this PR on the repo linked in https://github.com/DioxusLabs/docsite/issues/305 ... `dx build --release` fails with: ``` [..] static-generation build: Build progress 100% static-generation build: Build progress 100% static-generation build: ---...
`dx serve` seems to work **at first** But it eventually crashes with:
With [0c88b39](https://github.com/DioxusLabs/dioxus/pull/2892/commits/0c88b39c765fbf3fb421a4636890c949926f0557), `dx build --release` succeeds, but the static files cannot be opened in the browser when served with a plain http-server (it just serves the file statically from `./dist`,...
This happens when building a static-site (#2891) as well.
Yea, this is something I want to do more cleanly as part of https://github.com/juspay/nixos-unified-template/issues/93 Take a look at the linked (in the comment) `juspay/remote-development` repo for one approach, and let...