mirror of
https://github.com/Ryujinx/ryuko-ng.git
synced 2024-12-22 19:55:46 +00:00
Avoid infinite recursion caused by poetry2nix.cleanPythonSources
This commit is contained in:
parent
7c4bf15c93
commit
77fb8f402a
|
@ -19,7 +19,10 @@
|
|||
poetry2nix = inputs.poetry2nix.lib.mkPoetry2Nix { inherit pkgs; };
|
||||
in {
|
||||
ryuko-ng = with final;
|
||||
poetry2nix.mkPoetryApplication rec { projectDir = self; };
|
||||
poetry2nix.mkPoetryApplication rec {
|
||||
projectDir = self;
|
||||
src = projectDir;
|
||||
};
|
||||
};
|
||||
in flake-utils.lib.eachDefaultSystem (system:
|
||||
let
|
||||
|
|
Loading…
Reference in a new issue