3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #5170 from iu-parfunc/haskellTLS

haskell: add thread-local-storage package
This commit is contained in:
Arseniy Seroka 2014-11-30 03:17:39 +03:00
commit 24524e5a44
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,16 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, atomicPrimops }:
cabal.mkDerivation (self: {
pname = "thread-local-storage";
version = "0.1.0.3";
sha256 = "0ka6xrxzsw2z95qcc4v2hh4ldb22zkd5s62lns3v1853g4dw7k3l";
testDepends = [ atomicPrimops ];
doCheck = false;
meta = {
description = "Several options for thread-local-storage (TLS) in Haskell";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -2557,6 +2557,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
threads = callPackage ../development/libraries/haskell/threads {};
threadLocalStorage = callPackage ../development/libraries/haskell/thread-local-storage {};
thReifyMany = callPackage ../development/libraries/haskell/th-reify-many {};
Thrift = callPackage ../development/libraries/haskell/Thrift {};