Ivan Petkov
Ivan Petkov
@ondt thanks for the detailed write up! Is it possible to condense those instructions into a flake that I could check out and repro directly? [Alexandrie](https://github.com/Hirevo/alexandrie) is an open registry...
Hi @szlend thanks for the report! At first glance I suspect we might need to handle decompressing existing artifacts here. Specifically the `--strip-components=1` might not be taking the nested `target/foo`...
Thanks again for reporting this! Should be fixed with https://github.com/ipetkov/crane/pull/561
I find it a bit suspicious that an account created over 6 months ago with zero activity until a few days ago is suddenly making a pull request against a...
Hi @cameron1024 it sounds like you have made a change to a `Cargo.toml` somewhere but did not stage/commit the accompanying change to `Cargo.lock`. > do notice that running cargo generate-lockfile...
It's not that you have uncommited changes to `Cargo.lock`, it's that _cargo wants to make changes to `Cargo.lock` and you must commit those_. An easy way of doing that without...
Hmm, puzzling indeed... one thing you can try is `nix build` with `--keep-failed` and look at the build directory and compare the contents. It might give us a clue if...
Basically Nix will run every build in its own (sandboxed) directory, which gets cleaned up (deleted) when the build is finished (successful or not). Using `--keep-failed` tells Nix to keep...
Hi @samuela thanks for the report! Could you please provide a flake that reproduces the issue? Otherwise please take a look at the following docs: * https://github.com/ipetkov/crane/blob/55f4939ac59ff8f89c6a4029730a2d49ea09105f/docs/faq/constant-rebuilds.md * https://github.com/ipetkov/crane/blob/55f4939ac59ff8f89c6a4029730a2d49ea09105f/docs/source-filtering.md
Hi @fracek thanks for the report! At this time we don't have a good way to override/overlay crane-utils: https://github.com/ipetkov/crane/blob/f1dabc4abaa6e1ef4ef92d046aced96d1e94dc14/lib/downloadCargoPackageFromGit.nix#L12 In the mean time you can get unblocked by either using...