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