about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorDennis Gosnell <cdep.illabout@gmail.com>2024-01-15 18:04:26 +0900
committerDennis Gosnell <cdep.illabout@gmail.com>2024-01-15 18:04:26 +0900
commit65b9499b84bde1af8c256cec92950668cf97aca9 (patch)
treec84556e5054403747cfb6048bed13190b3918506 /pkgs/development/haskell-modules
parent951f8a30242c69a6d5f7c50ec6af1f5e5b5f7179 (diff)
downloadnixlib-65b9499b84bde1af8c256cec92950668cf97aca9.tar
nixlib-65b9499b84bde1af8c256cec92950668cf97aca9.tar.gz
nixlib-65b9499b84bde1af8c256cec92950668cf97aca9.tar.bz2
nixlib-65b9499b84bde1af8c256cec92950668cf97aca9.tar.lz
nixlib-65b9499b84bde1af8c256cec92950668cf97aca9.tar.xz
nixlib-65b9499b84bde1af8c256cec92950668cf97aca9.tar.zst
nixlib-65b9499b84bde1af8c256cec92950668cf97aca9.zip
haskellPackages.tar-conduit: temporarily pin to 0.4.1 to fix correctness bug
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index dcc070a67202..7d8ad48419e0 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -2526,6 +2526,10 @@ self: super: {
   ekg-core = assert super.ekg-core.version == "0.1.1.7"; doJailbreak super.ekg-core;
   hasura-ekg-core = doJailbreak super.hasura-ekg-core;
 
+  # tar-conduit-0.4.0 has a correctness bug that is fixed in 0.4.1:
+  # https://github.com/snoyberg/tar-conduit/issues/37
+  tar-conduit = assert super.tar-conduit.version == "0.4.0"; super.tar-conduit_0_4_1;
+
   # Test suite doesn't support hspec 2.8
   # https://github.com/zellige/hs-geojson/issues/29
   geojson = dontCheck super.geojson;