Unverified Commit 004ea202 authored by maralorn's avatar maralorn
Browse files

haskellPackages.pandoc-crossref: Fix build

parent 40ce16ef
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -47,6 +47,9 @@ default-package-overrides:
  - implicit-hie < 0.1.3
  - hie-bios < 0.13

  # pandoc-crossref 0.3.17 needs pandoc >= 3.1.8
  - pandoc-crossref < 0.3.17.0

  # 2023-09-17: reflex-dom 0.6.3.0 is broken https://github.com/reflex-frp/reflex-dom/issues/462
  - reflex-dom < 0.6.2.0

+41 −0
Original line number Diff line number Diff line
@@ -222417,6 +222417,46 @@ self: {
     }) {};
  "pandoc-crossref" = callPackage
    ({ mkDerivation, base, containers, criterion, data-default, deepseq
     , directory, filepath, gitrev, hspec, microlens, microlens-ghc
     , microlens-mtl, microlens-th, mtl, open-browser
     , optparse-applicative, pandoc, pandoc-cli, pandoc-types, syb
     , template-haskell, temporary, text, utility-ht
     }:
     mkDerivation {
       pname = "pandoc-crossref";
       version = "0.3.16.0";
       sha256 = "1vp4x4vgc17y0c4grfffrw0nx5iiimj7jm00mwc2p4x8v3gvd1qr";
       revision = "1";
       editedCabalFile = "00ghadmbwv14vpc5fh85q1y06z5pzlwh6ryr68l5vg66dk2241g4";
       isLibrary = true;
       isExecutable = true;
       enableSeparateDataOutput = true;
       libraryHaskellDepends = [
         base containers data-default directory filepath microlens
         microlens-ghc microlens-mtl microlens-th mtl pandoc pandoc-types
         syb template-haskell text utility-ht
       ];
       executableHaskellDepends = [
         base deepseq gitrev open-browser optparse-applicative pandoc
         pandoc-types template-haskell temporary text
       ];
       testHaskellDepends = [
         base containers data-default directory filepath hspec microlens mtl
         pandoc pandoc-types text
       ];
       testToolDepends = [ pandoc-cli ];
       benchmarkHaskellDepends = [
         base criterion pandoc pandoc-types text
       ];
       doHaddock = false;
       description = "Pandoc filter for cross-references";
       license = lib.licenses.gpl2Only;
       mainProgram = "pandoc-crossref";
       maintainers = [ lib.maintainers.maralorn ];
     }) {};
  "pandoc-crossref_0_3_17_0" = callPackage
    ({ mkDerivation, base, containers, criterion, data-default, deepseq
     , directory, filepath, gitrev, hspec, microlens, microlens-ghc
     , microlens-mtl, microlens-th, mtl, open-browser
@@ -222450,6 +222490,7 @@ self: {
       doHaddock = false;
       description = "Pandoc filter for cross-references";
       license = lib.licenses.gpl2Only;
       hydraPlatforms = lib.platforms.none;
       mainProgram = "pandoc-crossref";
       maintainers = [ lib.maintainers.maralorn ];
     }) {};