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

41 lines
1.0 KiB
Nix
Raw Normal View History

2018-07-11 19:36:30 +00:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, pandoc
, ethtool, iproute, libnl, udev, python, perl
2018-01-20 23:09:14 +00:00
} :
let
version = "21";
2018-01-20 23:09:14 +00:00
in stdenv.mkDerivation {
name = "rdma-core-${version}";
src = fetchFromGitHub {
owner = "linux-rdma";
repo = "rdma-core";
rev = "v${version}";
sha256 = "0q4hdm14f1xz2h0m5d821fdyp7i917rvmkas5axmfr1myv5422fl";
2018-01-20 23:09:14 +00:00
};
2018-07-11 19:36:30 +00:00
nativeBuildInputs = [ cmake pkgconfig pandoc ];
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 = ''
substituteInPlace providers/rxe/rxe_cfg.in \
--replace ethtool "${ethtool}/bin/ethtool" \
--replace 'ip addr' "${iproute}/bin/ip addr" \
--replace 'ip link' "${iproute}/bin/ip link"
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 ];
};
}