Concepts:
This repo is a nix flake that allows you to reproduce a CadQuery and CQ-editor installation anywhere that has nix. Well, a version of nix with flake support, which is currently only in unstable but should be merged soon. Also, it probably won't work outside of NixOS, because graphic drivers are super difficult to make reproducible. But anyway.
This means that you can create a model in CadQuery and note down the commit to this repo you used to build it (or fork it and take control yourself). At any point in the future you can use the same command to run CQ-editor and due to the flake describing all the sources of every package used by CQ-editor it will still work, regardless of:
- changes to the CadQuery API breaking backwards compatibility
- new Python versions
- nixpkgs dropping support for Sphinx
2.43.0.2 or whatever other version it gets pinned to next - etc., you get the idea, breaking changes anywhere in the chain of packages.
Now also includes cq-kit.
(You probably want to read "Build times" below before you run any of these commands)
To run CQ-editor:
nix run github:marcus7070/cq-flake
Note that I currently set QT_QPA_PLATFORM=xcb
in the CQ-editor wrapper. I need to do this to get it to work under Wayland, and I think it should work for most X based window managers as well, but YMMV.
To create an environment with CadQuery and python-language-server (where hopefully your IDE will pick up python-language-server and supply autocomplete, docs, etc.):
nix shell github:marcus7070/cq-flake#cadquery-env
To get the most out of this flake you should specify a commit along with those commands and note it down so you are always using the same CadQuery, eg.
nix run github:marcus7070/cq-flake/14d05cee591dccf5d64fa0e502e6e381a531c718
You can also generate the docs with:
nix build github:marcus7070/cq-flake#cq-docs
which will leave a symlink called result
pointing to the HTML docs.
OCP
is a huge build. It takes me about an hour on a beefy desktop. Also, now opencascade-occt
has to be rebuilt with the correct flags for CadQuery, adding another 30 mins to the build time.
I'm publishing my builds on Cachix, under the marcus7070
cache. Here are the usage instructions.
Once you have CQ on one machine, you can also push the runtime closure to other machines with the command:
nix copy --to ssh://192.168.1.XXX /nix/store/xxxxxxx-hashymchashyface-xxxxxxx-cq-editor
Should you wish to do dev work with CadQuery check out the dev
branch of this repo. flake.nix
shows how to reference a local copy (must be a Git repo) of CadQuery instead of a GitHub copy. Then use a command like:
nix flake update --update-input cadquery . && nix build -L .#cadquery-docs && qutebrowser ./result-doc/share/doc/index.html
I've also added some debug stuff for debugging with
Debugging currently removed from nixpkgs.gdb
. Debugging symbols for Python have come and gone from nixpkgs, if the debugging attributes don't have all the symbols you need look into setting overriding separateDebugInfo = true;
in the Python expression. The most likely method you need for debugging is to run nix develop github:marcus7070/cq-flake#cadquery-env-debug
, start python, switch to a second terminal, gdb python <PID>
, continue
, switch back to python, make it crash, switch back to gdb, bt
. gdb can't run scripts so it's difficult to start Python (which under nix is usually a script wrapper around the actual Python binary) from within gdb, easier just to attach it to a running instance.