804bb34181
Nixpkgs recently gained the ability to fetch cargo dependencies based on the Cargo.lock file which means we can get rid of all the generated Nix expressions. The only downside to that is that we are now building everything in one go and do not have the semi-incremental builds as we had before.
6 lines
74 B
Bash
Executable file
6 lines
74 B
Bash
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash
|
|
set -e
|
|
|
|
cargo fetch --locked
|