pandoc: Use pandoc-cli package

This commit is contained in:
maralorn 2023-07-02 11:19:17 +02:00
parent dbe2c9e2ba
commit 06672ed4e0
No known key found for this signature in database

View File

@ -1,7 +1,8 @@
{ stdenv, lib, haskellPackages, fetchpatch, haskell, removeReferencesTo }:
{ stdenv, lib, haskellPackages, haskell, removeReferencesTo }:
let
static = haskell.lib.compose.justStaticExecutables haskellPackages.pandoc;
# Since pandoc 3.0 the pandoc binary resides in the pandoc-cli package.
static = haskell.lib.compose.justStaticExecutables haskellPackages.pandoc-cli;
in
(haskell.lib.compose.overrideCabal (drv: {