a30df95691
This change brings support for building and running the regressions test suites.
27 lines
926 B
Nix
27 lines
926 B
Nix
{ cabal, abstractDeque, abstractPar, deepseq, HUnit, monadParExtras
|
|
, mtl, mwcRandom, parallel, QuickCheck, testFramework
|
|
, testFrameworkHunit, testFrameworkQuickcheck2, testFrameworkTh
|
|
, time
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "monad-par";
|
|
version = "0.3.4";
|
|
sha256 = "1j1xskd8smpfi2dpiwnpwakw0hs0i2yn1lrs9l06wz4b148hwc4k";
|
|
buildDepends = [
|
|
abstractDeque abstractPar deepseq monadParExtras mtl mwcRandom
|
|
parallel
|
|
];
|
|
testDepends = [
|
|
abstractDeque abstractPar deepseq HUnit monadParExtras mtl
|
|
mwcRandom QuickCheck testFramework testFrameworkHunit
|
|
testFrameworkQuickcheck2 testFrameworkTh time
|
|
];
|
|
meta = {
|
|
homepage = "https://github.com/simonmar/monad-par";
|
|
description = "A library for parallel programming based on a monad";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|