mirror of
https://github.com/Ryujinx/ryuko-ng.git
synced 2025-01-03 17:05:34 +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; };
|
poetry2nix = inputs.poetry2nix.lib.mkPoetry2Nix { inherit pkgs; };
|
||||||
in {
|
in {
|
||||||
ryuko-ng = with final;
|
ryuko-ng = with final;
|
||||||
poetry2nix.mkPoetryApplication rec { projectDir = self; };
|
poetry2nix.mkPoetryApplication rec {
|
||||||
|
projectDir = self;
|
||||||
|
src = projectDir;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
in flake-utils.lib.eachDefaultSystem (system:
|
in flake-utils.lib.eachDefaultSystem (system:
|
||||||
let
|
let
|
||||||
|
|
Loading…
Reference in a new issue