tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
beegfs: add rdma support
Markus Kowalewski
8 years ago
e4570af4
499b3edb
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
beegfs
default.nix
+4
-4
pkgs/os-specific/linux/beegfs/default.nix
···
1
{ stdenv, fetchurl, pkgconfig, unzip, which
2
-
, libuuid, attr, xfsprogs, cppunit
3
, zlib, openssl, sqlite, jre, openjdk, ant
4
} :
5
···
31
};
32
33
nativeBuildInputs = [ which unzip pkgconfig cppunit openjdk ant];
34
-
buildInputs = [ libuuid attr xfsprogs zlib openssl sqlite jre ];
35
36
postPatch = ''
37
patchShebangs ./
···
42
43
buildPhase = ''
44
for i in ${toString subdirs}; do
45
-
make -C $i
46
done
47
-
make -C beegfs_admon/build admon_gui
48
'';
49
50
installPhase = ''
···
1
{ stdenv, fetchurl, pkgconfig, unzip, which
2
+
, libuuid, attr, xfsprogs, cppunit, rdma-core
3
, zlib, openssl, sqlite, jre, openjdk, ant
4
} :
5
···
31
};
32
33
nativeBuildInputs = [ which unzip pkgconfig cppunit openjdk ant];
34
+
buildInputs = [ libuuid attr xfsprogs zlib openssl sqlite jre rdma-core ];
35
36
postPatch = ''
37
patchShebangs ./
···
42
43
buildPhase = ''
44
for i in ${toString subdirs}; do
45
+
make -C $i BEEGFS_OPENTK_IBVERBS=1
46
done
47
+
make -C beegfs_admon/build admon_gui BEEGFS_OPENTK_IBVERBS=1
48
'';
49
50
installPhase = ''