auto-patchelf: avoid filesets

The use of filesets triggers the same Nix evaluation bug as in
e4b8a0a243, which broke the installer
tests again.
This commit is contained in:
Emily
2024-10-30 23:12:37 +00:00
parent 6968567d60
commit 7402e574c9
2 changed files with 1 additions and 6 deletions
+1 -6
View File
@@ -8,12 +8,7 @@ python3Packages.buildPythonApplication {
version = "0-unstable-2024-08-14";
pyproject = false;
src = lib.fileset.toSource {
root = ./.;
fileset = lib.fileset.unions [
./auto-patchelf.py
];
};
src = ./src;
dependencies = with python3Packages; [
pyelftools