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

41 lines
1013 B
Nix
Raw Normal View History

2018-01-20 23:09:14 +00:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig
2018-01-28 09:09:22 +00:00
, ethtool, nettools, libnl, libudev, python, perl
2018-01-20 23:09:14 +00:00
} :
let
2018-02-27 00:54:03 +00:00
version = "17";
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}";
2018-02-27 00:54:03 +00:00
sha256 = "1xql46favv8i4ni4zqkk9ra2kcqq2dyn7jyi940c869lndmjw9ni";
2018-01-20 23:09:14 +00:00
};
nativeBuildInputs = [ cmake pkgconfig ];
2018-01-28 09:09:22 +00:00
buildInputs = [ libnl ethtool nettools libudev 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 ifconfig "${nettools}/bin/ifconfig"
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 ];
};
}