tvl-depot/tools/website-blocker/shell.nix
William Carroll ef5eda4015 Implement isToday predicate
Use the Data.Time package to implement the isToday predicate.
2020-03-29 00:00:47 +00:00

8 lines
122 B
Nix

let
pkgs = import <unstable> {};
in pkgs.mkShell {
buildInputs = with pkgs; [
ghc
haskellPackages.time
];
}