wip: a terrible idea

This commit is contained in:
David Arnold 2022-12-23 19:57:44 -05:00
parent c0ea7dfcfe
commit 03fe970dcf
No known key found for this signature in database
GPG Key ID: 0318D822BAC965CC

View File

@ -3,14 +3,20 @@
cell,
}: {
default = cell.packages.app;
app = {
source = inputs.src;
projects = {
prettier = {
name = "prettier";
subsystem = "nodejs";
translator = "yarn-lock";
app =
# a terrible idea
(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;
}