summary refs log tree commit diff
path: root/pkgs/development/libraries/alembic
diff options
context:
space:
mode:
authorGuillaume Bouchard <guillaum.bouchard@gmail.com>2018-01-16 11:31:35 +0100
committerPeter Hoeg <peter@hoeg.com>2018-01-16 18:31:35 +0800
commit2995066e9bf24f9f929589c3019d2cc4d2150ef0 (patch)
treeecf7f97f89cc44c76d6ccfd1b94df0bca8fa734a /pkgs/development/libraries/alembic
parent2bb5e5e7484365e0c4799b5f81ffc804e7526cb2 (diff)
downloadnixpkgs-2995066e9bf24f9f929589c3019d2cc4d2150ef0.tar
nixpkgs-2995066e9bf24f9f929589c3019d2cc4d2150ef0.tar.gz
nixpkgs-2995066e9bf24f9f929589c3019d2cc4d2150ef0.tar.bz2
nixpkgs-2995066e9bf24f9f929589c3019d2cc4d2150ef0.tar.lz
nixpkgs-2995066e9bf24f9f929589c3019d2cc4d2150ef0.tar.xz
nixpkgs-2995066e9bf24f9f929589c3019d2cc4d2150ef0.tar.zst
nixpkgs-2995066e9bf24f9f929589c3019d2cc4d2150ef0.zip
alembic: use threadsafe hdf5 (#30682)
* hdf5: introduce hdf5-threadsafe variant

Compiled with thread safe support and without the High Level library
which is incompatible with thread safety.

* alembic: clean buildInputs to nativeBuildInputs

* alembic: use hdf5-threadsafe
Diffstat (limited to 'pkgs/development/libraries/alembic')
-rw-r--r--pkgs/development/libraries/alembic/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/alembic/default.nix b/pkgs/development/libraries/alembic/default.nix
index bd540cdd500..a185f19a9a1 100644
--- a/pkgs/development/libraries/alembic/default.nix
+++ b/pkgs/development/libraries/alembic/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, unzip, cmake, openexr, hdf5 }:
+{ stdenv, fetchFromGitHub, unzip, cmake, openexr, hdf5-threadsafe }:
 
 stdenv.mkDerivation rec
 {
@@ -14,7 +14,8 @@ stdenv.mkDerivation rec
 
   outputs = [ "bin" "dev" "out" "lib" ];
 
-  buildInputs = [ unzip cmake openexr hdf5 ];
+  nativeBuildInputs = [ unzip cmake ];
+  buildInputs = [ openexr hdf5-threadsafe ];
 
   enableParallelBuilding = true;