24 lines
		
	
	
		
			764 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			764 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
 | 
						|
 | 
						|
{ cabal, HUnit, primitive, QuickCheck, statistics, testFramework
 | 
						|
, testFrameworkHunit, testFrameworkQuickcheck2, time, vector
 | 
						|
}:
 | 
						|
 | 
						|
cabal.mkDerivation (self: {
 | 
						|
  pname = "mwc-random";
 | 
						|
  version = "0.13.2.0";
 | 
						|
  sha256 = "07nbbn9ainzsqg2hlw6l9vsfqylfcqs1apgvpnhdgids2gvmrkaa";
 | 
						|
  buildDepends = [ primitive time vector ];
 | 
						|
  testDepends = [
 | 
						|
    HUnit QuickCheck statistics testFramework testFrameworkHunit
 | 
						|
    testFrameworkQuickcheck2 vector
 | 
						|
  ];
 | 
						|
  doCheck = false;
 | 
						|
  meta = {
 | 
						|
    homepage = "https://github.com/bos/mwc-random";
 | 
						|
    description = "Fast, high quality pseudo random number generation";
 | 
						|
    license = self.stdenv.lib.licenses.bsd3;
 | 
						|
    platforms = self.ghc.meta.platforms;
 | 
						|
  };
 | 
						|
})
 |