2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, baseUnicodeSymbols, concurrentExtra, HUnit, stm
|
|
|
|
, testFramework, testFrameworkHunit
|
|
|
|
}:
|
2012-09-24 10:58:57 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "threads";
|
2014-01-08 11:31:50 +00:00
|
|
|
version = "0.5.1.1";
|
|
|
|
sha256 = "196yjkq7wgjcck9wqj4f3x3k47ls9yiay3k6d8k7kzixc2xc621z";
|
2012-09-24 10:58:57 +01: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 10:58:57 +01: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;
|
|
|
|
};
|
|
|
|
})
|