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

41 lines
1013 B
Nix
Raw Normal View History

2018-01-21 02:09:14 +03:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig
2018-01-28 12:09:22 +03:00
, ethtool, nettools, libnl, libudev, python, perl
2018-01-21 02:09:14 +03:00
} :
let
2018-02-27 03:54:03 +03:00
version = "17";
2018-01-21 02:09:14 +03:00
in stdenv.mkDerivation {
name = "rdma-core-${version}";
src = fetchFromGitHub {
owner = "linux-rdma";
repo = "rdma-core";
rev = "v${version}";
2018-02-27 03:54:03 +03:00
sha256 = "1xql46favv8i4ni4zqkk9ra2kcqq2dyn7jyi940c869lndmjw9ni";
2018-01-21 02:09:14 +03:00
};
nativeBuildInputs = [ cmake pkgconfig ];
2018-01-28 12:09:22 +03:00
buildInputs = [ libnl ethtool nettools libudev python perl ];
2018-01-21 02:09:14 +03:00
cmakeFlags = [
"-DCMAKE_INSTALL_RUNDIR=/run"
"-DCMAKE_INSTALL_SHAREDSTATEDIR=/var/lib"
];
2018-01-28 12:09:22 +03:00
postPatch = ''
substituteInPlace providers/rxe/rxe_cfg.in \
--replace ethtool "${ethtool}/bin/ethtool" \
--replace ifconfig "${nettools}/bin/ifconfig"
2018-01-21 02:09:14 +03: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 23:16:12 +03:00
platforms = platforms.linux;
2018-01-21 02:09:14 +03:00
maintainers = with maintainers; [ markuskowa ];
};
}