如何在 Nixos 中安装最新/不稳定的 Haskell 包可执行文件?

How to install a latest / unstable Haskell package executable in Nixos?

我正在尝试安装最新版本的 ghcid

我通过在我的 nix 配置中添加 haskellPackages.ghcid 安装了 ghcid,如下所示:

{ config, pkgs, ... }:

let
  unstable = import <unstable> {};
in
{
   environment.systemPackages = with pkgs; [
     haskellPackages.ghcid
   ];
}

我想它可能会作为一个特定的包提供,但我似乎找不到任何东西:

nix-env -v -qaP haskellPackages.ghcid

nix-env -v -qaP ghcid

Return ...matches no derivations

出奇的简单:

 unstable.haskellPackages.ghcid