about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorEllie Hermaszewska <github@sub.monoid.al>2023-11-20 14:55:43 +0800
committerGitHub <noreply@github.com>2023-11-20 14:55:43 +0800
commit3fb937a1e9f4157f57011965b99fcb7f4139d9ad (patch)
treed8dd8b73a00bb09f1e4ef5c526e3b8cc88a0dcb1 /pkgs/development/tools
parent6315a2afd42f198abb452105b5690aabc5317231 (diff)
parent537bedd19e26d88609ea9a72bf12161c651e6407 (diff)
Merge pull request #266650 from NixOS/haskell-updates
haskellPackages: update stackage and hackage
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/pandoc/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/pandoc/default.nix b/pkgs/development/tools/pandoc/default.nix
index c8c553afad6ed..cbbb026b8336e 100644
--- a/pkgs/development/tools/pandoc/default.nix
+++ b/pkgs/development/tools/pandoc/default.nix
@@ -34,7 +34,7 @@ in
         -t ${haskellPackages.warp} \
         $out/bin/pandoc
       remove-references-to \
-        -t ${haskellPackages.pandoc_3_1_8} \
+        -t ${haskellPackages.pandoc_3_1_9} \
         $out/bin/pandoc
     '' + lib.optionalString (stdenv.buildPlatform == stdenv.hostPlatform) ''
       mkdir -p $out/share/bash-completion/completions
@@ -48,5 +48,5 @@ in
     # lead to a transitive runtime dependency on the whole GHC distribution.
     # This should ideally be fixed in haskellPackages (or even Cabal),
     # but a minimal pandoc is important enough to patch it manually.
-    disallowedReferences = [ haskellPackages.pandoc-types haskellPackages.warp haskellPackages.pandoc_3_1_8 ];
+    disallowedReferences = [ haskellPackages.pandoc-types haskellPackages.warp haskellPackages.pandoc_3_1_9 ];
   })