From e4570af4933a71ef701e0267c0d400b09dd44523 Mon Sep 17 00:00:00 2001 From: Markus Kowalewski Date: Mon, 22 Jan 2018 20:16:50 -0800 Subject: [PATCH] beegfs: add rdma support --- pkgs/os-specific/linux/beegfs/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/os-specific/linux/beegfs/default.nix b/pkgs/os-specific/linux/beegfs/default.nix index 1bb5612ce92..03b485b0ae3 100644 --- a/pkgs/os-specific/linux/beegfs/default.nix +++ b/pkgs/os-specific/linux/beegfs/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig, unzip, which -, libuuid, attr, xfsprogs, cppunit +, libuuid, attr, xfsprogs, cppunit, rdma-core , zlib, openssl, sqlite, jre, openjdk, ant } : @@ -31,7 +31,7 @@ in stdenv.mkDerivation rec { }; nativeBuildInputs = [ which unzip pkgconfig cppunit openjdk ant]; - buildInputs = [ libuuid attr xfsprogs zlib openssl sqlite jre ]; + buildInputs = [ libuuid attr xfsprogs zlib openssl sqlite jre rdma-core ]; postPatch = '' patchShebangs ./ @@ -42,9 +42,9 @@ in stdenv.mkDerivation rec { buildPhase = '' for i in ${toString subdirs}; do - make -C $i + make -C $i BEEGFS_OPENTK_IBVERBS=1 done - make -C beegfs_admon/build admon_gui + make -C beegfs_admon/build admon_gui BEEGFS_OPENTK_IBVERBS=1 ''; installPhase = ''