Unverified Commit 00bca9c4 authored by Tristan Ross's avatar Tristan Ross
Browse files

diffoscope: fix aarch64-linux eval

parent 29ef0be5
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -209,11 +209,9 @@ python.pkgs.buildPythonApplication rec {
    ])
    ++ lib.optionals enableBloat (
      [
        aapt
        abootimg
        apksigcopier
        apksigner
        apktool
        cbfstool
        colord
        enjarify
@@ -257,6 +255,12 @@ python.pkgs.buildPythonApplication rec {
      ])
      # oggvideotools is broken on Darwin, please put it back when it will be fixed?
      ++ lib.optionals stdenv.hostPlatform.isLinux [ oggvideotools ]
      # Causes an eval failure
      # See https://github.com/NixOS/nixpkgs/issues/463873
      ++ lib.optionals (!stdenv.hostPlatform.isLinux && !stdenv.hostPlatform.isAarch64) [
        aapt
        apktool
      ]
    )
  );