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

cabal.mkDerivation (self: {
  pname = "datetime";
  version = "0.2.1";
  sha256 = "1yfg3wvi13r725dhfsmcdw4ns3cgl2ayrb5jck0q8b4crk2dlrzg";
  buildDepends = [ QuickCheck time ];
  meta = {
    homepage = "http://github.com/esessoms/datetime";
    description = "Utilities to make Data.Time.* easier to use.";
    license = "GPL";
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})