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-12-01 22:29:11 +00:00
|
|
|
version = "0.2.2";
|
|
|
|
sha256 = "0xnl12mscc5nwjl9s2lx4xr8q8agzcpxh3bmxxidfjrg19drfwrm";
|
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;
|
|
|
|
};
|
|
|
|
})
|