nixpkgs/pkgs/os-specific/linux/libfabric/default.nix

30 lines
716 B
Nix
Raw Normal View History

2020-04-28 14:52:56 +00:00
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, libpsm2 }:
stdenv.mkDerivation rec {
pname = "libfabric";
2020-10-25 17:25:51 +00:00
version = "1.11.1";
2020-04-28 14:52:56 +00:00
enableParallelBuilding = true;
src = fetchFromGitHub {
owner = "ofiwg";
repo = pname;
rev = "v${version}";
2020-10-25 17:25:51 +00:00
sha256 = "17qq96mlfhbkbmsvbazhxzkjnh6x37xlh3r0ngp0rfqbl05z2pcr";
2020-04-28 14:52:56 +00:00
};
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 ];
};
}