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