Skip to content

Commit

Permalink
feat: expose the todo binary to package outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
GetPsyched committed Jun 25, 2024
1 parent f846786 commit 1ddaa70
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,14 @@
});
in
{
${projectName} = craneLib.buildPackage { };
mindmap = craneLib.buildPackage { meta.mainProgram = "mindmap"; };
todo = craneLib.buildPackage { meta.mainProgram = "todo"; };
remind = craneLib.buildPackage { meta.mainProgram = "remind"; };
});
in
{
packages.default = multiBuild.${projectName};
# packages.todo = flakeboxLib.pickBinary { pkg = multiBuild.${projectName}; bin = "todo"; };

legacyPackages = multiBuild;

Expand Down

0 comments on commit 1ddaa70

Please sign in to comment.