Skip to content

Commit

Permalink
ucx: add ucx 1.15 and mpi depends on it
Browse files Browse the repository at this point in the history
  • Loading branch information
adfaure committed Oct 2, 2023
1 parent b990c38 commit 65c63b9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
4 changes: 3 additions & 1 deletion nur.nix
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ rec {
dcdb = pkgs.callPackage ./pkgs/dcdb { inherit scylladb-cpp-driver bacnet-stack mosquitto-dcdb; };


ucx = pkgs.callPackage ./pkgs/ucx {};
openmpi = pkgs.openmpi.override { ucx = ucx; };
npb = pkgs.callPackage ./pkgs/npb { openmpi = openmpi; };
ear-examon = pkgs.callPackage ./pkgs/ear { useExamon = true; inherit openssl_1_0_2 examon; };
ear = pkgs.callPackage ./pkgs/ear { inherit openssl_1_0_2 examon; };
earCuda = pkgs.callPackage ./pkgs/ear { cudaSupport = true; inherit openssl_1_0_2 examon; };
Expand Down Expand Up @@ -126,7 +129,6 @@ rec {

melissa-py = pkgs.python3.pkgs.callPackage ./pkgs/python-modules/melissa {};

npb = pkgs.callPackage ./pkgs/npb { };

go-swagger = pkgs.callPackage ./pkgs/go-swagger { };

Expand Down
11 changes: 11 additions & 0 deletions pkgs/ucx/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{ ucx, fetchFromGitHub }:

ucx.overrideAttrs (attrs: rec {
version = "1.15";
src = fetchFromGitHub {
owner = "openucx";
repo = "ucx";
rev = "v${version}";
sha256 = "sha256-oAigiCgbr27pX+kNl+RW1P10TKYFSKrHDK4U4z8WMko=";
};
})

0 comments on commit 65c63b9

Please sign in to comment.