diff --git a/pkgs/development/compilers/ghcjs/8.10/common-overrides.nix b/pkgs/development/compilers/ghcjs/8.10/common-overrides.nix index e1671d01ffe7..5c4829a857c9 100644 --- a/pkgs/development/compilers/ghcjs/8.10/common-overrides.nix +++ b/pkgs/development/compilers/ghcjs/8.10/common-overrides.nix @@ -14,24 +14,5 @@ in self: super: { ]; }) (super.ghcjs.overrideScope (self: super: { optparse-applicative = self.optparse-applicative_0_15_1_0; - webdriver = overrideCabal (drv: { - patches = drv.patches or [] ++ [ - # Patch for aeson 2.0 which adds a lower bound on it, so we don't apply it globally - # Pending https://github.com/kallisti-dev/hs-webdriver/pull/183 - (fetchpatch { - name = "webdriver-aeson-2.0.patch"; - url = "https://github.com/georgefst/hs-webdriver/commit/90ded63218da17fc0bd9f9b208b0b3f60b135757.patch"; - sha256 = "1xvkk51r2v020xlmci5n1fd1na8raa332lrj7r9f0ijsyfvnqlv0"; - excludes = [ "webdriver.cabal" ]; - }) - ]; - # Fix line endings so patch applies - prePatch = drv.prePatch or "" + '' - find . -name '*.hs' | xargs "${buildPackages.dos2unix}/bin/dos2unix" - ''; - - jailbreak = true; - broken = false; - }) super.webdriver; })); }