Commit 7402e574 authored by Emily's avatar Emily
Browse files

auto-patchelf: avoid filesets

The use of filesets triggers the same Nix evaluation bug as in
e4b8a0a2, which broke the installer
tests again.
parent 6968567d
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -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