mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
haskell-parallel-io: add version 0.3.2
This commit is contained in:
parent
c958552828
commit
35cc2c32bb
17
pkgs/development/libraries/haskell/parallel-io/default.nix
Normal file
17
pkgs/development/libraries/haskell/parallel-io/default.nix
Normal file
@ -0,0 +1,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;
|
||||
};
|
||||
})
|
@ -1199,6 +1199,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
parallel_3_2_0_3 = callPackage ../development/libraries/haskell/parallel/3.2.0.3.nix {};
|
||||
parallel = self.parallel_3_2_0_3;
|
||||
|
||||
parallelIo = callPackage ../development/libraries/haskell/parallel-io {};
|
||||
|
||||
parseargs = callPackage ../development/libraries/haskell/parseargs {};
|
||||
|
||||
parsec_2_1_0_1 = callPackage ../development/libraries/haskell/parsec/2.1.0.1.nix {};
|
||||
|
Loading…
Reference in New Issue
Block a user