about summary refs log tree commit diff
path: root/pkgs/development/tools/pandoc
diff options
context:
space:
mode:
authormaralorn <mail@maralorn.de>2023-07-02 11:19:17 +0200
committermaralorn <mail@maralorn.de>2023-07-02 11:19:23 +0200
commit06672ed4e0e820375baa3f5ae507d93e5402f8e5 (patch)
treea195a0fc3dc212e741e2ded14d337f65518fbbc0 /pkgs/development/tools/pandoc
parentdbe2c9e2ba9df18cf2471c8cd5cd43fe16b65a6a (diff)
downloadnixlib-06672ed4e0e820375baa3f5ae507d93e5402f8e5.tar
nixlib-06672ed4e0e820375baa3f5ae507d93e5402f8e5.tar.gz
nixlib-06672ed4e0e820375baa3f5ae507d93e5402f8e5.tar.bz2
nixlib-06672ed4e0e820375baa3f5ae507d93e5402f8e5.tar.lz
nixlib-06672ed4e0e820375baa3f5ae507d93e5402f8e5.tar.xz
nixlib-06672ed4e0e820375baa3f5ae507d93e5402f8e5.tar.zst
nixlib-06672ed4e0e820375baa3f5ae507d93e5402f8e5.zip
pandoc: Use pandoc-cli package
Diffstat (limited to 'pkgs/development/tools/pandoc')
-rw-r--r--pkgs/development/tools/pandoc/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/tools/pandoc/default.nix b/pkgs/development/tools/pandoc/default.nix
index 31396f800a1e..1e9eec3f804c 100644
--- a/pkgs/development/tools/pandoc/default.nix
+++ b/pkgs/development/tools/pandoc/default.nix
@@ -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: {