summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorsternenseemann <sternenseemann@systemli.org>2023-07-25 20:37:12 +0200
committersternenseemann <sternenseemann@systemli.org>2023-07-25 20:37:12 +0200
commit52f0aec3f095a1d74fb50e9e370f43d3f623496f (patch)
tree7fff64698aad9ae523b7aac15b24237058459035 /pkgs/development/haskell-modules/configuration-common.nix
parent812ce1a97cbf1c39c3762fb7e364ddb125654b9d (diff)
downloadnixpkgs-52f0aec3f095a1d74fb50e9e370f43d3f623496f.tar
nixpkgs-52f0aec3f095a1d74fb50e9e370f43d3f623496f.tar.gz
nixpkgs-52f0aec3f095a1d74fb50e9e370f43d3f623496f.tar.bz2
nixpkgs-52f0aec3f095a1d74fb50e9e370f43d3f623496f.tar.lz
nixpkgs-52f0aec3f095a1d74fb50e9e370f43d3f623496f.tar.xz
nixpkgs-52f0aec3f095a1d74fb50e9e370f43d3f623496f.tar.zst
nixpkgs-52f0aec3f095a1d74fb50e9e370f43d3f623496f.zip
pandoc: provide matching version of skylighting{,-core}
Since 500b36d057ceaa7ad3e2e282958a44ed607b021f, there is a more recent
version of skylighting and skylighting-core available than Stackage LTS
contains. We'll have to manually provide matching versions for pandoc
3.1.6 again.
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-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 26381504308..e01edf0686a 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1915,6 +1915,10 @@ self: super: {
       # pandoc depends on http-client-tls, which only starts depending
       # on crypton-connection in http-client-tls-0.3.6.2.
       http-client-tls = self.http-client-tls_0_3_6_2;
+
+      # pandoc and skylighting are developed in tandem
+      skylighting-core = self.skylighting-core_0_13_4_1;
+      skylighting = self.skylighting_0_13_4_1;
     };
   in {
     pandoc-cli = super.pandoc-cli.overrideScope pandoc-cli-overlay;