2013-02-24 13:09:07 -08:00
|
|
|
{ cabal, HUnit, primitive, QuickCheck, statistics, testFramework
|
|
|
|
, testFrameworkHunit, testFrameworkQuickcheck2, time, vector
|
|
|
|
}:
|
2010-11-17 07:38:16 -08:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2010-11-17 07:38:16 -08:00
|
|
|
pname = "mwc-random";
|
2014-06-16 07:11:14 -07:00
|
|
|
version = "0.13.1.2";
|
|
|
|
sha256 = "0b0amp9nv750azg3jc5yyfpdaqzh0z09jp41hwgrzr0j6kq1ygqi";
|
2012-02-16 06:05:41 -08:00
|
|
|
buildDepends = [ primitive time vector ];
|
2013-02-24 13:09:07 -08:00
|
|
|
testDepends = [
|
|
|
|
HUnit QuickCheck statistics testFramework testFrameworkHunit
|
|
|
|
testFrameworkQuickcheck2 vector
|
|
|
|
];
|
2013-02-24 13:24:55 -08:00
|
|
|
doCheck = false;
|
2010-11-17 07:38:16 -08:00
|
|
|
meta = {
|
2011-08-07 15:02:56 -07:00
|
|
|
homepage = "https://github.com/bos/mwc-random";
|
2010-11-17 07:38:16 -08:00
|
|
|
description = "Fast, high quality pseudo random number generation";
|
2011-08-07 15:02:56 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-11-17 07:38:16 -08:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|