2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, baseUnicodeSymbols, concurrentExtra, HUnit, stm
|
|
|
|
, testFramework, testFrameworkHunit
|
|
|
|
}:
|
2012-09-24 09:58:57 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "threads";
|
2013-03-13 10:58:45 +00:00
|
|
|
version = "0.5.0.2";
|
|
|
|
sha256 = "14ccmjg56429a3mzx11ccv18bvkqg56ph9kbpmhdx2ajar80g6jm";
|
2012-09-24 09:58:57 +00:00
|
|
|
buildDepends = [ baseUnicodeSymbols stm ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
baseUnicodeSymbols concurrentExtra HUnit stm testFramework
|
|
|
|
testFrameworkHunit
|
|
|
|
];
|
2013-02-24 23:11:16 +00:00
|
|
|
doCheck = false;
|
2012-09-24 09:58:57 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/basvandijk/threads";
|
|
|
|
description = "Fork threads and wait for their result";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-03-23 13:57:25 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.simons ];
|
2012-09-24 09:58:57 +00:00
|
|
|
};
|
|
|
|
})
|