mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
ucx: init at 1.7.0
This commit is contained in:
parent
e8343960a9
commit
78d5a13cf8
39
pkgs/development/libraries/ucx/default.nix
Normal file
39
pkgs/development/libraries/ucx/default.nix
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, autoreconfHook, doxygen
|
||||||
|
, numactl, rdma-core, libbfd, libiberty, perl, zlib
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
version = "1.7.0";
|
||||||
|
|
||||||
|
in stdenv.mkDerivation {
|
||||||
|
name = "ucx-${version}";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "openucx";
|
||||||
|
repo = "ucx";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "149p8s7jrg7pbbq0hw0qm8va119bsl19q4scgk94vjqliyc1s33h";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook doxygen ];
|
||||||
|
|
||||||
|
buildInputs = [ numactl rdma-core libbfd libiberty perl zlib ];
|
||||||
|
|
||||||
|
configureFlags = [
|
||||||
|
"--with-rdmacm=${rdma-core}"
|
||||||
|
"--with-dc"
|
||||||
|
"--with-rc"
|
||||||
|
"--with-dm"
|
||||||
|
"--with-verbs=${rdma-core}"
|
||||||
|
];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Unified Communication X library";
|
||||||
|
homepage = http://www.openucx.org;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.markuskowa ];
|
||||||
|
};
|
||||||
|
}
|
@ -6007,6 +6007,8 @@ in
|
|||||||
|
|
||||||
openmpi = callPackage ../development/libraries/openmpi { };
|
openmpi = callPackage ../development/libraries/openmpi { };
|
||||||
|
|
||||||
|
ucx = callPackage ../development/libraries/ucx {};
|
||||||
|
|
||||||
openmodelica = callPackage ../applications/science/misc/openmodelica { };
|
openmodelica = callPackage ../applications/science/misc/openmodelica { };
|
||||||
|
|
||||||
qarte = libsForQt5.callPackage ../applications/video/qarte { };
|
qarte = libsForQt5.callPackage ../applications/video/qarte { };
|
||||||
|
Loading…
Reference in New Issue
Block a user