haskellPackages.pandoc-crossref: Fix build

This commit is contained in:
maralorn 2023-10-22 01:28:56 +02:00
parent 40ce16ef93
commit 004ea202f2
No known key found for this signature in database
2 changed files with 44 additions and 0 deletions

View File

@ -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

View File

@ -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 ];
}) {};