Skip to content

Commit

Permalink
flake: Add worker to overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
phlmn committed Jan 17, 2025
1 parent 1b2c769 commit fdc54c5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,15 @@
let
pkgs = prev;
lib = pkgs.lib;
python = pkgs.python311;
in
{
transcribee-worker = import ./nix/pkgs/worker.nix {
inherit pkgs lib python uv2nix pyproject-nix pyproject-build-systems;
};

transcribee-backend = import ./nix/pkgs/backend.nix {
inherit pkgs lib uv2nix pyproject-nix pyproject-build-systems;
python = prev.python311;
inherit pkgs lib python uv2nix pyproject-nix pyproject-build-systems;
};

transcribee-frontend = import ./nix/pkgs/frontend.nix {
Expand Down

0 comments on commit fdc54c5

Please sign in to comment.