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 a6b0cb2 commit 38d14daCopy full SHA for 38d14da
flake.nix
@@ -165,18 +165,16 @@
165
};
166
in
167
{
168
- defaultPackage = self.packages."${system}".deploy-rs;
169
packages.default = self.packages."${system}".deploy-rs;
170
packages.deploy-rs = pkgs.deploy-rs.deploy-rs;
171
172
- defaultApp = self.apps."${system}".deploy-rs;
173
apps.default = self.apps."${system}".deploy-rs;
174
apps.deploy-rs = {
175
type = "app";
176
program = "${self.packages."${system}".default}/bin/deploy";
177
178
179
- devShell = pkgs.mkShell {
+ devShells.default = pkgs.mkShell {
180
inputsFrom = [ self.packages.${system}.deploy-rs ];
181
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
182
buildInputs = with pkgs; [
0 commit comments