can't get barebones example building #109
-
I'm trying to just get this working with rust-hello and running into an steps: Error:
Adding |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
# flake.nix
{
# ...
outputs = inputs:
inputs.nci.lib.makeOutputs {
# ...
config = common: {
outputs.defaults = {
package = "rust-hello";
};
};
# ...
};
} |
Beta Was this translation helpful? Give feedback.
nix-cargo-integration
doesn't provide any default packages. You need to use theoutputs.defaults.package
option to set a default package. Like so: