Commit 8cf33c2d authored by sternenseemann's avatar sternenseemann
Browse files

flutter: remove path interpolation

Path interpolation is not supported in Nix 2.3 which nixpkgs maintains
support for.
parent 84a4712b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@
    runHook postInstall
  '';
}).overrideAttrs (
  if builtins.pathExists ./overrides/${src.flutterPlatform}.nix
  then callPackage ./overrides/${src.flutterPlatform}.nix { }
  if builtins.pathExists (./overrides + "/${src.flutterPlatform}.nix")
  then callPackage (./overrides + "/${src.flutterPlatform}.nix") { }
  else ({ ... }: { })
)