2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, numactl, pkg-config }:
|
2020-04-28 10:38:21 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libpsm2";
|
2020-12-20 21:07:34 +00:00
|
|
|
version = "11.2.185";
|
2020-04-28 10:38:21 +01:00
|
|
|
|
|
|
|
preConfigure= ''
|
|
|
|
export UDEVDIR=$out/etc/udev
|
|
|
|
substituteInPlace ./Makefile --replace "udevrulesdir}" "prefix}/etc/udev";
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
buildInputs = [ numactl pkg-config ];
|
2020-04-28 10:38:21 +01:00
|
|
|
|
2021-09-20 20:09:54 +01:00
|
|
|
makeFlags = [
|
|
|
|
# Disable blanket -Werror to avoid build failures
|
|
|
|
# on fresh toolchains like gcc-11.
|
|
|
|
"WERROR="
|
|
|
|
];
|
|
|
|
|
2020-12-20 21:07:34 +00:00
|
|
|
installFlags = [
|
2020-04-28 10:38:21 +01:00
|
|
|
"DESTDIR=$(out)"
|
|
|
|
"UDEVDIR=/etc/udev"
|
|
|
|
"LIBPSM2_COMPAT_CONF_DIR=/etc"
|
|
|
|
];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "intel";
|
|
|
|
repo = "opa-psm2";
|
2020-12-20 21:07:34 +00:00
|
|
|
rev = "PSM2_${version}";
|
|
|
|
sha256 = "062hg4r6gz7pla9df70nqs5i2a3mp1wszmp4l0g771fykhhrxsjg";
|
2020-04-28 10:38:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mv $out/usr/* $out
|
|
|
|
rmdir $out/usr
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-28 10:38:21 +01:00
|
|
|
homepage = "https://github.com/intel/opa-psm2";
|
|
|
|
description = "The PSM2 library supports a number of fabric media and stacks";
|
|
|
|
license = with licenses; [ gpl2 bsd3 ];
|
2021-09-20 20:07:20 +01:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2020-04-28 10:38:21 +01:00
|
|
|
maintainers = [ maintainers.bzizou ];
|
|
|
|
};
|
|
|
|
}
|