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

37 lines
975 B
Nix
Raw Normal View History

2018-01-21 00:09:14 +01:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig
2018-01-28 10:09:22 +01:00
, ethtool, nettools, libnl, libudev, python, perl
2018-01-21 00:09:14 +01:00
} :
let
version = "16.1";
in stdenv.mkDerivation {
name = "rdma-core-${version}";
src = fetchFromGitHub {
owner = "linux-rdma";
repo = "rdma-core";
rev = "v${version}";
sha256 = "1fixw6hpf732vzlpczx0b2y84jrhgfjr3cljqxky7makzgh2s7ng";
};
nativeBuildInputs = [ cmake pkgconfig ];
2018-01-28 10:09:22 +01:00
buildInputs = [ libnl ethtool nettools libudev python perl ];
2018-01-21 00:09:14 +01:00
2018-01-28 10:09:22 +01:00
postPatch = ''
substituteInPlace providers/rxe/rxe_cfg.in \
--replace '@CMAKE_INSTALL_FULL_SHAREDSTATEDIR@' '/run' \
--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 ];
};
}