nixpkgs/pkgs/os-specific/linux/rdma-core/default.nix

54 lines
1.3 KiB
Nix
Raw Normal View History

2019-08-09 09:35:18 +00:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, docutils
, pandoc, ethtool, iproute, libnl, udev, python, perl
, makeWrapper
2018-01-20 23:09:14 +00:00
} :
let
version = "28.0";
2018-01-20 23:09:14 +00:00
in stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "rdma-core";
inherit version;
2018-01-20 23:09:14 +00:00
src = fetchFromGitHub {
owner = "linux-rdma";
repo = "rdma-core";
rev = "v${version}";
sha256 = "0az2is6p5gkyphi2b978kwn7knry60y33kn6p7cxz49ca79a42cy";
2018-01-20 23:09:14 +00:00
};
2019-08-09 09:35:18 +00:00
nativeBuildInputs = [ cmake pkgconfig pandoc docutils makeWrapper ];
buildInputs = [ libnl ethtool iproute udev python perl ];
2018-01-20 23:09:14 +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"
wrapProgram $pls --prefix PERL5LIB : "$out/${perl.libPrefix}"
done
2018-01-20 23:09:14 +00:00
'';
meta = with stdenv.lib; {
description = "RDMA Core Userspace Libraries and Daemons";
homepage = https://github.com/linux-rdma/rdma-core;
license = licenses.gpl2;
2018-01-28 20:16:12 +00:00
platforms = platforms.linux;
2018-01-20 23:09:14 +00:00
maintainers = with maintainers; [ markuskowa ];
};
}