2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, QuickCheck, time }:
|
2009-07-18 16:25:28 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2009-07-18 16:25:28 +01:00
|
|
|
pname = "datetime";
|
2011-08-07 21:25:03 +01:00
|
|
|
version = "0.2.1";
|
|
|
|
sha256 = "1yfg3wvi13r725dhfsmcdw4ns3cgl2ayrb5jck0q8b4crk2dlrzg";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ QuickCheck time ];
|
2009-07-18 16:25:28 +01:00
|
|
|
meta = {
|
2011-08-07 21:25:03 +01:00
|
|
|
homepage = "http://github.com/esessoms/datetime";
|
|
|
|
description = "Utilities to make Data.Time.* easier to use.";
|
|
|
|
license = "GPL";
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-07-18 16:25:28 +01:00
|
|
|
};
|
|
|
|
})
|