about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
diff options
context:
space:
mode:
authorNiklas Hambüchen <mail@nh2.me>2024-06-20 03:01:00 +0200
committerGitHub <noreply@github.com>2024-06-20 03:01:00 +0200
commitdd3cf6eb699a599d41a2ed85fa6a22b7578d6756 (patch)
tree850cb523c0dd6e9473cc42e0a46a1ef8dde0d3c4 /pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
parenta15139cf872af66012b59d03b89d5410a31a9e08 (diff)
parent7e9245b3de657857257d8abd06e77073e059c1af (diff)
Merge pull request #318783 from pbsds/fix-reproducible-patch-urls-1717622023
 treewide: make fetchpatch urls reproducible
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
index ba0f6c31a216e..bf05ee9ef3ff7 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
@@ -131,8 +131,10 @@ self: super: {
   hip = appendConfigureFlag "--ghc-options=-fsimpl-tick-factor=200" super.hip;
 
   # Fix build with text-2.x.
-  libmpd = appendPatch (pkgs.fetchpatch
-      { url = "https://github.com/vimus/libmpd-haskell/pull/138.patch";
+  libmpd = appendPatch
+    (pkgs.fetchpatch {
+        name = "138.patch"; # https://github.com/vimus/libmpd-haskell/pull/138
+        url = "https://github.com/vimus/libmpd-haskell/compare/95d3b3bab5858d6d1f0e079d0ab7c2d182336acb...f1cbf247261641565a3937b90721f7955d254c5e.patch";
         sha256 = "Q4fA2J/Tq+WernBo+UIMdj604ILOMlIYkG4Pr046DfM=";
       })
     super.libmpd;