ef5eda4015
Use the Data.Time package to implement the isToday predicate.
8 lines
122 B
Nix
8 lines
122 B
Nix
let
|
|
pkgs = import <unstable> {};
|
|
in pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
ghc
|
|
haskellPackages.time
|
|
];
|
|
}
|