jon/default.nix
2022-11-29 17:58:08 +01:00

19 lines
320 B
Nix

{ pkgs ? import ./nix/pkgs.nix {} }:
let
ghc = import ./nix/ghc924.nix pkgs;
haskellDeps = import ./nix/haskell-deps.nix;
tools = with pkgs; [
# nix tools
niv
nix-tree
# haskell tools
stack
(ghc.ghcWithPackages haskellDeps)
];
in
pkgs.mkShellNoCC {
nativeBuildInputs = tools;
}