-
-
Notifications
You must be signed in to change notification settings - Fork 147
wip: std skelleton (missing d2n function; help!) #433
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?
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 |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| { | ||
| inputs = { | ||
| std.url = "github:divnix/std"; | ||
| dream2nix.url = "github:nix-community/dream2nix"; | ||
| dream2nix.inputs.nixpkgs.follows = "std/nixpkgs"; | ||
| nixpkgs.follows = "std/nixpkgs"; | ||
| src.url = "github:prettier/prettier/2.4.1"; | ||
| src.flake = false; | ||
| }; | ||
|
|
||
| outputs = { | ||
| std, | ||
| self, | ||
| ... | ||
| } @ inputs: | ||
| std.growOn { | ||
| inherit inputs; | ||
| cellsFrom = ./nix; | ||
| cellBlocks = with std.blockTypes; [ | ||
| (installables "packages" {ci.build = true;}) | ||
| ]; | ||
| } | ||
| # compat with `nix` cli | ||
| { | ||
| packages = std.harvest self ["app" "packages"]; | ||
| }; | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| { | ||
| inputs, | ||
| cell, | ||
| }: { | ||
| default = cell.packages.app; | ||
| app = | ||
| # a terrible idea | ||
|
Contributor
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. This could work but completely destroys the harmony 😃 But I don't think this is the right way. There must be a better way.
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. Currently, we do not have a less terrible interface ;) To summarize it. I plan to change dream2nix to not provide any
Contributor
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. Ok, that is frankly extremely promising. I engaged in a round of (extensive) comments trying to fully cover my stakeholder perspective as a:
I'll reproduce the question about potential output contracts for Standard BlockTypeActions to consume (drv-parts contracts vs d2n contracts) also here in github: DavHau/drv-parts#1 |
||
| (inputs.dream2nix.lib.makeFlakeOutputs { | ||
| systems = [inputs.nixpkgs.system]; | ||
| source = inputs.src; | ||
| projects = { | ||
| prettier = { | ||
| name = "prettier"; | ||
| subsystem = "nodejs"; | ||
| translator = "yarn-lock"; | ||
| }; | ||
| }; | ||
| }) | ||
| .packages | ||
| .${inputs.nixpkgs.system} | ||
| .default; | ||
|
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. You might want to pick |
||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.