2021-01-19 07:50:56 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, docutils
|
2021-03-14 17:05:16 +01:00
|
|
|
, pandoc, ethtool, iproute2, libnl, udev, python3, perl
|
2018-01-21 00:09:14 +01:00
|
|
|
} :
|
|
|
|
|
|
|
|
let
|
2021-08-02 00:12:34 +02:00
|
|
|
version = "36.0";
|
2018-01-21 00:09:14 +01:00
|
|
|
|
|
|
|
in stdenv.mkDerivation {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "rdma-core";
|
|
|
|
inherit version;
|
2018-01-21 00:09:14 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "linux-rdma";
|
|
|
|
repo = "rdma-core";
|
|
|
|
rev = "v${version}";
|
2021-08-02 00:12:34 +02:00
|
|
|
sha256 = "0x3mpwmhln6brwrwix9abdq1bs9zi4qnr3r64vwqk7l6f43mqd30";
|
2018-01-21 00:09:14 +01:00
|
|
|
};
|
|
|
|
|
2021-02-24 20:53:45 +01:00
|
|
|
nativeBuildInputs = [ cmake pkg-config pandoc docutils ];
|
2021-03-14 17:05:16 +01:00
|
|
|
buildInputs = [ libnl ethtool iproute2 udev python3 perl ];
|
2018-01-21 00:09:14 +01:00
|
|
|
|
2018-01-31 00:01:25 +01:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DCMAKE_INSTALL_RUNDIR=/run"
|
|
|
|
"-DCMAKE_INSTALL_SHAREDSTATEDIR=/var/lib"
|
|
|
|
];
|
|
|
|
|
2018-01-28 10:09:22 +01:00
|
|
|
postPatch = ''
|
2019-08-09 11:35:18 +02: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 20:53:45 +01:00
|
|
|
substituteInPlace $pls --replace \
|
|
|
|
"${perl}/bin/perl" "${perl}/bin/perl -I $out/${perl.libPrefix}"
|
2019-08-09 11:35:18 +02:00
|
|
|
done
|
2018-01-21 00:09:14 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-01-21 00:09:14 +01:00
|
|
|
description = "RDMA Core Userspace Libraries and Daemons";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/linux-rdma/rdma-core";
|
2021-01-28 10:51:54 +01:00
|
|
|
license = licenses.gpl2Only;
|
2018-01-28 21:16:12 +01:00
|
|
|
platforms = platforms.linux;
|
2018-01-21 00:09:14 +01:00
|
|
|
maintainers = with maintainers; [ markuskowa ];
|
|
|
|
};
|
|
|
|
}
|