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

40 lines
1,023 B
Nix
Raw Normal View History

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