# Pastebin YOTOwLz2 I am trying to turn off testing for a haskell package (as it fails for me on MACos) ``` { nixpkgs ? import { overlays = [ (self: super: {inline-r = pkgs.haskell.lib.overrideCabal super.inline-r (old: { doCheck = false; });})]; } , compiler ? "ghc822", doBenchmark ? false }: ``` but of course this does *not* work as `pkgs` is not defined. What is the correct incantation?