nixpkgs/pkgs/development/libraries/haskell/threads/default.nix

22 lines
630 B
Nix
Raw Normal View History

{ cabal, baseUnicodeSymbols, concurrentExtra, HUnit, stm
, testFramework, testFrameworkHunit
}:
2012-09-24 09:58:57 +00:00
cabal.mkDerivation (self: {
pname = "threads";
version = "0.5.0.2";
sha256 = "14ccmjg56429a3mzx11ccv18bvkqg56ph9kbpmhdx2ajar80g6jm";
2012-09-24 09:58:57 +00:00
buildDepends = [ baseUnicodeSymbols stm ];
testDepends = [
baseUnicodeSymbols concurrentExtra HUnit stm testFramework
testFrameworkHunit
];
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;
};
})