nixpkgs/pkgs/development/libraries/haskell/hourglass/default.nix

21 lines
630 B
Nix
Raw Normal View History

2014-05-04 20:58:58 +00:00
{ cabal, deepseq, HUnit, mtl, QuickCheck, testFramework
, testFrameworkHunit, testFrameworkQuickcheck2, time
}:
cabal.mkDerivation (self: {
pname = "hourglass";
version = "0.1.2";
sha256 = "18jvl4f8vfabvd9vlhxjjlswc80x8w4h6gdflvzdkjrknnyk118j";
2014-05-04 20:58:58 +00:00
buildDepends = [ deepseq ];
testDepends = [
deepseq HUnit mtl QuickCheck testFramework testFrameworkHunit
testFrameworkQuickcheck2 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;
};
})