We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d29e15 commit 5eda373Copy full SHA for 5eda373
flake.nix
@@ -120,13 +120,21 @@
120
};
121
122
packages = rec {
123
- onefetch-debug = onefetch // {
124
- cargoExtraArgs = lib.concatStringsSep " " [
125
- # Just to get more human-readable look
126
- "--profile dev"
127
- ];
128
- };
129
- inherit onefetch;
+ onefetch-debug = craneLib.buildPackage (
+ common
+ // {
+ inherit cargoArtifacts;
+ doCheck = false;
+ CARGO_PROFILE = "dev";
+ }
130
+ );
131
+ onefetch = craneLib.buildPackage (
132
133
134
135
136
137
138
default = onefetch-debug;
139
140
0 commit comments