haskell: add thread-local-storage package

This commit is contained in:
Ryan Newton 2014-11-28 15:32:56 -05:00
parent c37611f3e5
commit f5834013fc
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

@ -2553,6 +2553,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 {};