summary refs log tree commit diff
path: root/pkgs/tools/filesystems/xtreemfs
diff options
context:
space:
mode:
authorKranium Gikos Mendoza <kranium@gikos.net>2016-08-06 14:23:02 +0800
committerKranium Gikos Mendoza <kranium@gikos.net>2016-08-06 14:23:02 +0800
commit736517e9c7a65ae47a9659701fd651837a735b60 (patch)
tree37778e34af1e8317cdfdef84288e084d195db3cc /pkgs/tools/filesystems/xtreemfs
parent4b62054f4c2e4ee09f141305bd09940ad78b1d34 (diff)
downloadnixpkgs-736517e9c7a65ae47a9659701fd651837a735b60.tar
nixpkgs-736517e9c7a65ae47a9659701fd651837a735b60.tar.gz
nixpkgs-736517e9c7a65ae47a9659701fd651837a735b60.tar.bz2
nixpkgs-736517e9c7a65ae47a9659701fd651837a735b60.tar.lz
nixpkgs-736517e9c7a65ae47a9659701fd651837a735b60.tar.xz
nixpkgs-736517e9c7a65ae47a9659701fd651837a735b60.tar.zst
nixpkgs-736517e9c7a65ae47a9659701fd651837a735b60.zip
xtreemfs: fix build
Diffstat (limited to 'pkgs/tools/filesystems/xtreemfs')
-rw-r--r--pkgs/tools/filesystems/xtreemfs/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/filesystems/xtreemfs/default.nix b/pkgs/tools/filesystems/xtreemfs/default.nix
index fb491948a47..adee80d9c5d 100644
--- a/pkgs/tools/filesystems/xtreemfs/default.nix
+++ b/pkgs/tools/filesystems/xtreemfs/default.nix
@@ -21,7 +21,8 @@ stdenv.mkDerivation rec {
 
     export BOOST_INCLUDEDIR=${boost.dev}/include
     export BOOST_LIBRARYDIR=${boost.out}/lib
-    export OPENSSL_ROOT_DIR=${openssl.dev}
+    export CMAKE_INCLUDE_PATH=${openssl.dev}/include
+    export CMAKE_LIBRARY_PATH=${openssl.out}/lib
 
     substituteInPlace cpp/cmake/FindValgrind.cmake \
       --replace "/usr/local" "${valgrind}"