forked from mirrors/nixpkgs
pandoc: fix build by using buildDepends to match cabal file
The previously used dependency hsb2hs was a build-tools dependency,
but file-embed is build-depends:
ff991d1e21
Fixes #33349
This commit is contained in:
parent
f1a6fa6eec
commit
566ded39b1
|
@ -3896,7 +3896,7 @@ with pkgs;
|
|||
|
||||
pandoc = haskell.lib.overrideCabal (haskell.lib.justStaticExecutables haskellPackages.pandoc) (drv: {
|
||||
configureFlags = drv.configureFlags or [] ++ ["-fembed_data_files"];
|
||||
buildTools = drv.buildTools or [] ++ [haskellPackages.file-embed];
|
||||
buildDepends = drv.buildDepends or [] ++ [haskellPackages.file-embed];
|
||||
});
|
||||
|
||||
pamtester = callPackage ../tools/security/pamtester { };
|
||||
|
|
Loading…
Reference in a new issue