tvl-depot/tools/url-blocker/shell.nix

13 lines
204 B
Nix
Raw Normal View History

let
pkgs = import <unstable> {};
in pkgs.mkShell {
buildInputs = with pkgs; [
(haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [
time
aeson
either
hspec
]))
];
}