summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/datetime/default.nix
blob: de7d4bbffe700b9c54bc078f2515e46ccbe8896c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{cabal, QuickCheck, time}:

cabal.mkDerivation (self : {
  pname = "datetime";
  version = "0.1";
  sha256 = "0j2h369ydmlnkvk6m9j7b6fgs6cyc425s8n3yaajr4j5rdqcq6lk";
  propagatedBuildInputs = [QuickCheck time];
  meta = {
    description = "Utilities to make Data.Time.* easier to use";
  };
})