30 lines
716 B
Nix
30 lines
716 B
Nix
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, libpsm2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libfabric";
|
|
version = "1.11.1";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ofiwg";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "17qq96mlfhbkbmsvbazhxzkjnh6x37xlh3r0ngp0rfqbl05z2pcr";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ] ;
|
|
|
|
buildInputs = [ libpsm2 ] ;
|
|
|
|
configureFlags = [ "--enable-psm2=${libpsm2}" ] ;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://libfabric.org/";
|
|
description = "Open Fabric Interfaces";
|
|
license = with licenses; [ gpl2 bsd2 ];
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = [ maintainers.bzizou ];
|
|
};
|
|
}
|