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:
Will Dietz 2018-01-02 14:36:11 -06:00
parent f1a6fa6eec
commit 566ded39b1

View File

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