summaryrefslogtreecommitdiffstats
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2024-06-05 12:46:17 +0200
committerrnhmjoj <rnhmjoj@inventati.org>2024-06-06 12:16:30 +0200
commit4636757b18c6c3496f74d5908b871ba56c8273f6 (patch)
tree660c725613e4287fd723573bff4d04196a229624 /pkgs/development/haskell-modules/configuration-common.nix
parent9106eb8ad99147c1bc5830a903479672d2bd8cdf (diff)
haskellPackages.scat: unbreak
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 5252b2e6c1a0..20db1716580f 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1359,18 +1359,17 @@ self: super: {
'';
}) super.PortMidi;
- # Fix for base >= 4.11
scat = overrideCabal (drv: {
patches = [
- # Fix build with base >= 4.11
+ # Fix build with base >= 4.11 (https://github.com/redelmann/scat/pull/6)
(fetchpatch {
url = "https://github.com/redelmann/scat/commit/429f22944b7634b8789cb3805292bcc2b23e3e9f.diff";
hash = "sha256-FLr1KfBaSYzI6MiZIBY1CkgAb5sThvvgjrSAN8EV0h4=";
})
- # Fix build with vector >= 0.13
+ # Fix build with vector >= 0.13, mtl >= 2.3 (https://github.com/redelmann/scat/pull/8)
(fetchpatch {
- url = "https://github.com/redelmann/scat/commit/e21cc9c17b5b605b5bc0aacad66d44bbe0beb8c4.diff";
- hash = "sha256-MifHb2EKZx8skOcs+2t54CzxAS4PaEC0OTEfq4yVXzk=";
+ url = "https://github.com/redelmann/scat/compare/e8e064f7e6a152fe25a6ccd743573a16974239d0..c6a3636548d628f32d8edc73a333188ce24141a7.patch";
+ hash = "sha256-BU4MUn/TnZHpZBlX1vDHE7QZva5yhlLTb8zwpx7UScI";
})
];
}) super.scat;