2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, docutils
|
2021-03-14 16:05:16 +00:00
|
|
|
, pandoc, ethtool, iproute2, libnl, udev, python3, perl
|
2018-01-20 23:09:14 +00:00
|
|
|
} :
|
|
|
|
|
|
|
|
|
2021-10-04 20:28:20 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 21:52:01 +00:00
|
|
|
pname = "rdma-core";
|
2023-01-12 10:18:51 +00:00
|
|
|
version = "44.0";
|
2018-01-20 23:09:14 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "linux-rdma";
|
|
|
|
repo = "rdma-core";
|
|
|
|
rev = "v${version}";
|
2023-01-12 10:18:51 +00:00
|
|
|
sha256 = "sha256-oV//+mT/0fgAAFkqkYVEZEIvPJwET+Rrjkooz6nHQH8=";
|
2018-01-20 23:09:14 +00:00
|
|
|
};
|
|
|
|
|
2021-12-24 07:56:30 +00:00
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [ cmake pkg-config pandoc docutils python3 ];
|
|
|
|
buildInputs = [ libnl ethtool iproute2 udev perl ];
|
2018-01-20 23:09:14 +00:00
|
|
|
|
2018-01-30 23:01:25 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DCMAKE_INSTALL_RUNDIR=/run"
|
|
|
|
"-DCMAKE_INSTALL_SHAREDSTATEDIR=/var/lib"
|
|
|
|
];
|
|
|
|
|
2018-01-28 09:09:22 +00:00
|
|
|
postPatch = ''
|
2019-08-09 09:35:18 +00:00
|
|
|
substituteInPlace srp_daemon/srp_daemon.sh.in \
|
|
|
|
--replace /bin/rm rm
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
# cmake script is buggy, move file manually
|
|
|
|
mkdir -p $out/${perl.libPrefix}
|
|
|
|
mv $out/share/perl5/* $out/${perl.libPrefix}
|
|
|
|
'';
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
for pls in $out/bin/{ibfindnodesusing.pl,ibidsverify.pl}; do
|
|
|
|
echo "wrapping $pls"
|
2021-02-24 19:53:45 +00:00
|
|
|
substituteInPlace $pls --replace \
|
|
|
|
"${perl}/bin/perl" "${perl}/bin/perl -I $out/${perl.libPrefix}"
|
2019-08-09 09:35:18 +00:00
|
|
|
done
|
2018-01-20 23:09:14 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-01-20 23:09:14 +00:00
|
|
|
description = "RDMA Core Userspace Libraries and Daemons";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/linux-rdma/rdma-core";
|
2021-01-28 09:51:54 +00:00
|
|
|
license = licenses.gpl2Only;
|
2018-01-28 20:16:12 +00:00
|
|
|
platforms = platforms.linux;
|
2018-01-20 23:09:14 +00:00
|
|
|
maintainers = with maintainers; [ markuskowa ];
|
|
|
|
};
|
|
|
|
}
|