summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorArseniy Seroka <jagajaga@users.noreply.github.com>2014-11-30 03:17:39 +0300
committerArseniy Seroka <jagajaga@users.noreply.github.com>2014-11-30 03:17:39 +0300
commit24524e5a44a78739aaf0c3f6521c4a2fc44021f1 (patch)
tree14da27015aa19fa4acb21082556c79af726aee8c /pkgs/development/libraries
parenta8b231df97b198a78450411e146d1da176e76513 (diff)
parentf5834013fc4f91ae2423a1c6760ff67cce892643 (diff)
downloadnixpkgs-24524e5a44a78739aaf0c3f6521c4a2fc44021f1.tar
nixpkgs-24524e5a44a78739aaf0c3f6521c4a2fc44021f1.tar.gz
nixpkgs-24524e5a44a78739aaf0c3f6521c4a2fc44021f1.tar.bz2
nixpkgs-24524e5a44a78739aaf0c3f6521c4a2fc44021f1.tar.lz
nixpkgs-24524e5a44a78739aaf0c3f6521c4a2fc44021f1.tar.xz
nixpkgs-24524e5a44a78739aaf0c3f6521c4a2fc44021f1.tar.zst
nixpkgs-24524e5a44a78739aaf0c3f6521c4a2fc44021f1.zip
Merge pull request #5170 from iu-parfunc/haskellTLS
haskell: add thread-local-storage package
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/haskell/thread-local-storage/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/thread-local-storage/default.nix b/pkgs/development/libraries/haskell/thread-local-storage/default.nix
new file mode 100644
index 00000000000..5405f903e1d
--- /dev/null
+++ b/pkgs/development/libraries/haskell/thread-local-storage/default.nix
@@ -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;
+  };
+})