Skip to content

Commit

Permalink
flake: add devenv-up as a package
Browse files Browse the repository at this point in the history
This is a quick-fix to a more complicated flake/flake-parts UX issue
that needs resolving. For now this replicates what flake-parts does.

Resolves #864.
  • Loading branch information
sandydoo committed Nov 16, 2023
1 parent 14fdefc commit 3ff67be
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions templates/simple/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
forEachSystem = nixpkgs.lib.genAttrs (import systems);
in
{
packages = forEachSystem (system: {
devenv-up = self.devShells.${system}.default.config.procfileScript;
});

devShells = forEachSystem
(system:
let
Expand Down

0 comments on commit 3ff67be

Please sign in to comment.