2013-02-24 22:09:07 +01:00
|
|
|
{ cabal, doctest, hspec, QuickCheck, time }:
|
2012-08-09 11:12:45 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "unix-time";
|
2013-07-01 11:04:05 +02:00
|
|
|
version = "0.1.9";
|
|
|
|
sha256 = "0z4761g7rkw771r9828h1l37pp3brrra9ihjg203h66jc1wlvb72";
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [ doctest hspec QuickCheck time ];
|
2012-08-09 11:12:45 +02:00
|
|
|
meta = {
|
|
|
|
description = "Unix time parser/formatter and utilities";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|