about summary refs log tree commit diff
path: root/users/wpcarro/assessments/brilliant/shell.nix
blob: d0a6c7e5e6f509f33acdc0b52178c6f8fd50def0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
let
  pkgs = import (builtins.fetchGit {
    url = "https://github.com/NixOS/nixpkgs-channels";
    ref = "nixos-20.03";
    rev = "afa9ca61924f05aacfe495a7ad0fd84709d236cc";
  }) {};
in pkgs.mkShell {
  buildInputs = with pkgs; [
    (haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [
      hspec
      optparse-applicative
      unordered-containers
      split
    ]))
  ];
}