summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/parallel-io/default.nix
blob: 1cb682d2b9190fd31d61a1ffac36cd52adad1379 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ cabal, extensibleExceptions, random }:

cabal.mkDerivation (self: {
  pname = "parallel-io";
  version = "0.3.2";
  sha256 = "1n9y1d1lcdwvhjsfqdlxknl89fxncq17kgin43wlki0c39cgirga";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [ extensibleExceptions random ];
  jailbreak = true;
  meta = {
    homepage = "http://batterseapower.github.com/parallel-io";
    description = "Combinators for executing IO actions in parallel on a thread pool";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})