mirror of
https://github.com/commercialhaskell/stackage-server.git
synced 2026-02-10 01:57:28 +01:00
18 lines
495 B
Nix
18 lines
495 B
Nix
{pkgs, ...}: {
|
|
name = "stackage-server";
|
|
compiler-nix-name = "ghc910"; # Version of GHC to use
|
|
|
|
# Cross compilation support:
|
|
# crossPlatforms = p: pkgs.lib.optionals pkgs.stdenv.hostPlatform.isx86_64 ([
|
|
# p.mingwW64
|
|
# p.ghcjs
|
|
# ] ++ pkgs.lib.optionals pkgs.stdenv.hostPlatform.isLinux [
|
|
# p.musl64
|
|
# ]);
|
|
|
|
# Tools to include in the development shell
|
|
shell.tools.cabal = "latest";
|
|
# shell.tools.hlint = "latest";
|
|
# shell.tools.haskell-language-server = "latest";
|
|
}
|