From d877ca18d10960faf16627722fccc9c483fd9b60 Mon Sep 17 00:00:00 2001 From: Tommy Bidne Date: Fri, 21 Jul 2023 13:45:21 +1200 Subject: [PATCH] haskellPackages.rest-rewrite: remove fix that is no longer necessary The actual fix has been upstreamed to the package itself and is now present in rest-rewrite-0.4.2. --- .../development/haskell-modules/configuration-nix.nix | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index 1c3c7ead1506..bed442a25aff 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -1302,17 +1302,6 @@ self: super: builtins.intersectAttrs super { halide-haskell = super.halide-haskell.override { Halide = pkgs.halide; }; - rest-rewrite = - overrideCabal - (oldAttrs: { - # Directory is needed for tests. - # https://github.com/zgrannan/rest/issues/37 - postPatch = oldAttrs.postPatch or "" + '' - mkdir graphs - ''; - }) - super.rest-rewrite; - # Sydtest has a brittle test suite that will only work with the exact # versions that it ships with. sydtest = dontCheck super.sydtest;