Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
88 lines
1.5 KiB
Nix
88 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
pkg-config,
|
|
docutils,
|
|
pandoc,
|
|
ethtool,
|
|
iproute2,
|
|
libnl,
|
|
udev,
|
|
udevCheckHook,
|
|
python3,
|
|
perl,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "rdma-core";
|
|
version = "59.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linux-rdma";
|
|
repo = "rdma-core";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-GSARu2HNej4tI62RjLWkjS+5FKVbeNmX7jh0atlEpX0=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
outputs = [
|
|
"out"
|
|
"man"
|
|
"dev"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
docutils
|
|
pandoc
|
|
pkg-config
|
|
python3
|
|
udevCheckHook
|
|
];
|
|
|
|
buildInputs = [
|
|
ethtool
|
|
iproute2
|
|
libnl
|
|
perl
|
|
udev
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_INSTALL_RUNDIR=/run"
|
|
"-DCMAKE_INSTALL_SHAREDSTATEDIR=/var/lib"
|
|
];
|
|
|
|
postPatch = ''
|
|
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"
|
|
substituteInPlace $pls --replace \
|
|
"${perl}/bin/perl" "${perl}/bin/perl -I $out/${perl.libPrefix}"
|
|
done
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
|
|
meta = {
|
|
description = "RDMA Core Userspace Libraries and Daemons";
|
|
homepage = "https://github.com/linux-rdma/rdma-core";
|
|
license = lib.licenses.gpl2Only;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = [ lib.maintainers.markuskowa ];
|
|
};
|
|
})
|