2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, doctest, hspec, QuickCheck, time }:
|
2012-08-09 10:12:45 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "unix-time";
|
2013-10-18 16:03:36 +01:00
|
|
|
version = "0.2.1";
|
|
|
|
sha256 = "15kg1rxbw86p5jzig9ac7lsizmlvqkxikq7h8jfi04rri39a9jiy";
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [ doctest hspec QuickCheck time ];
|
2012-08-09 10:12:45 +01:00
|
|
|
meta = {
|
|
|
|
description = "Unix time parser/formatter and utilities";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|