Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
70 lines
2.5 KiB
Nix
70 lines
2.5 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
haskellPackages,
|
|
haskell,
|
|
removeReferencesTo,
|
|
installShellFiles,
|
|
selectPandocCLI ? (p: p.pandoc-cli), # The version of pandoc-cli choosen from haskellPackages.
|
|
}:
|
|
|
|
let
|
|
# Since pandoc 3.0 the pandoc binary resides in the pandoc-cli package.
|
|
static = haskell.lib.compose.justStaticExecutables pandoc-cli;
|
|
pandoc-cli = selectPandocCLI haskellPackages;
|
|
|
|
in
|
|
(haskell.lib.compose.overrideCabal (drv: {
|
|
configureFlags = drv.configureFlags or [ ] ++ [ "-fembed_data_files" ];
|
|
buildDepends = drv.buildDepends or [ ] ++ [ pandoc-cli.scope.file-embed ];
|
|
buildTools = (drv.buildTools or [ ]) ++ [
|
|
removeReferencesTo
|
|
installShellFiles
|
|
];
|
|
|
|
# Normally, the static linked executable shouldn't refer to any library or the compiler.
|
|
# This is not always the case when the dependency has Paths_* module generated by Cabal,
|
|
# where bindir, datadir, and libdir contain the path to the library, and thus make the
|
|
# executable indirectly refer to GHC. However, most Haskell programs only use Paths_*.version for
|
|
# getting the version at runtime, so it's safe to remove the references to them.
|
|
# This is true so far for pandoc-types and warp.
|
|
# For details see: https://github.com/NixOS/nixpkgs/issues/34376
|
|
postInstall =
|
|
drv.postInstall or ""
|
|
+ ''
|
|
remove-references-to \
|
|
-t ${pandoc-cli.scope.pandoc-types} \
|
|
$out/bin/pandoc
|
|
remove-references-to \
|
|
-t ${pandoc-cli.scope.warp} \
|
|
$out/bin/pandoc
|
|
remove-references-to \
|
|
-t ${pandoc-cli.scope.pandoc} \
|
|
$out/bin/pandoc
|
|
remove-references-to \
|
|
-t ${pandoc-cli.scope.typst} \
|
|
$out/bin/pandoc
|
|
''
|
|
+ lib.optionalString (stdenv.buildPlatform == stdenv.hostPlatform) ''
|
|
mkdir -p $out/share/bash-completion/completions
|
|
$out/bin/pandoc --bash-completion > $out/share/bash-completion/completions/pandoc
|
|
''
|
|
+ ''
|
|
installManPage man/*
|
|
'';
|
|
}) static).overrideAttrs
|
|
(drv: {
|
|
# These libraries are still referenced, because they generate
|
|
# a `Paths_*` module for figuring out their version.
|
|
# The `Paths_*` module is generated by Cabal, and contains the
|
|
# version, but also paths to e.g. the data directories, which
|
|
# lead to a transitive runtime dependency on the whole GHC distribution.
|
|
# This should ideally be fixed in haskellPackages (or even Cabal),
|
|
# but a minimal pandoc is important enough to patch it manually.
|
|
disallowedReferences = [
|
|
pandoc-cli.scope.pandoc-types
|
|
pandoc-cli.scope.warp
|
|
pandoc-cli.scope.pandoc
|
|
];
|
|
})
|