2014-06-05 11:03:48 +02:00
|
|
|
{ cabal, deepseq, mtl, tasty, tastyHunit, tastyQuickcheck, time }:
|
2014-05-04 22:58:58 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "hourglass";
|
2014-06-11 11:33:07 +02:00
|
|
|
version = "0.2.2";
|
|
|
|
sha256 = "015ipy9adi67nfddjsw9c0ihn0banghgawjli0lgrmiyjz01610c";
|
2014-05-04 22:58:58 +02:00
|
|
|
buildDepends = [ deepseq ];
|
|
|
|
testDepends = [
|
2014-06-05 11:03:48 +02:00
|
|
|
deepseq mtl tasty tastyHunit tastyQuickcheck time
|
2014-05-04 22:58:58 +02:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/vincenthz/hs-hourglass";
|
|
|
|
description = "simple performant time related library";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|