我目前有一个正在 NixOS 上开发的 Yesod Web 应用程序。我正在使用default.nix
O'Charles 的博客文章中描述的文件:
{ haskellPackages ? (import <nixpkgs> {}).haskellPackages }:
haskellPackages.cabal.mkDerivation (self: {
pname = "myblog";
version = "0.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
buildDepends = with haskellPackages; [
aeson bson conduit dataDefault fastLogger hjsmin
httpConduit monadControl monadLogger mongoDB persistent
#persistentMongoDB
persistentTemplate poolConduit shakespeare text
waiExtra waiLogger warp yaml yesod yesodAuth
yesodCore yesodDefault yesodForm yesodStatic
];
testDepends = with haskellPackages; [
hspec monadLogger persistent
#persistentMongoDB
resourcet transformers yesod yesodCore yesodTest
];
buildTools = with haskellPackages; [
cabalInstall ghcMod yesodBin
];
jailbreak = true;
})
这工作得很好。我可以像往常一样使用yesod
二进制文件。cabal
但是,我遇到了一个问题。运行时cabal haddock
,我收到以下错误:
Running Haddock for mycoolblog-0.0.0...
Preprocessing library mycoolblog-0.0.0...
Warning: The documentation for the following packages are not installed. No
links will be generated to these packages: persistent-mongoDB-2.1.1
<command line>: cannot satisfy -package-id aeson-0.8.0.2-9e93bdd6f8e68379314dd5f31414f87f
(use -v for more information)
谷歌搜索会出现以下链接:github: cabal haddock 'cannot meet -package-id' #2468。似乎是在说应该使用 ghcWithPackages。
谷歌搜索ghcWithPackages
会在 Nix 上找到 O'Charles 的(个人?)wiki。它有一个ghcWithPackages
用于开发已经在 nixpkgs 中的包的示例,但我无法让它与不在 nixpkgs 中的包一起工作(我的 cms/blog)。
按照O'Charles wiki 上的描述进行设置并运行nix-shell -v
,我收到以下错误:
evaluating file `/nix/store/an4sg7cxi1ii3vids8417kajl3ss13vd-nix-1.7/share/nix/corepkgs/derivation.nix'
error: cannot auto-call a function that has an argument without a default value (`cabal')
为什么我会收到上述错误?我如何为尚未在 nixpkgs 中的 Haskell 项目编写default.nix
and ?shell.nix
理想情况下,它会使用ghcWithPackages
这样的cabal haddock
作品。