nixpkgs/pkgs/development/libraries/haskell/hourglass/default.nix
2014-06-09 10:26:57 +02:00

17 lines
539 B
Nix

{ cabal, deepseq, mtl, tasty, tastyHunit, tastyQuickcheck, time }:
cabal.mkDerivation (self: {
pname = "hourglass";
version = "0.2.0";
sha256 = "13zphy3gfj9p7vsa477qy30968fnz5kq7d0lzb1pyg5hxkx44rim";
buildDepends = [ deepseq ];
testDepends = [
deepseq mtl tasty tastyHunit tastyQuickcheck time
];
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;
};
})