-
Notifications
You must be signed in to change notification settings - Fork 84
Update simpleFlake #108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Update simpleFlake #108
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -64,17 +64,22 @@ let | |
| } else { } | ||
| ) | ||
| // | ||
| ( | ||
| if packages ? default then { | ||
| packages.default = packages.default; | ||
| } else { } | ||
| ) | ||
| // | ||
| ( | ||
| if packages ? checks then { | ||
| checks = packages.checks; | ||
| } else { } | ||
| ) | ||
| // | ||
| ( | ||
| if shell != null then { | ||
| devShell = shell_ { inherit pkgs; }; | ||
| } else if packages ? devShell then { | ||
| devShell = packages.devShell; | ||
|
Comment on lines
-76
to
-77
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this is still needed
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it also for back-compat? From Flake output attributes |
||
| if shell != null then rec { | ||
| devShells.${name} = shell_ { inherit pkgs; }; | ||
| devShells.default = devShells.${name}; | ||
| } else { } | ||
| ) | ||
| ); | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.