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-02-05 01:43:00 -08:00
|
|
|
version = "0.13.1.1";
|
|
|
|
sha256 = "1hi9ci65m3pjkli0rvx2x4fmp73c9fsmnc1zkpaj4g64ibhhir64";
|
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
|
|
|
})
|