opensm: init at 3.3.20
This commit is contained in:
parent
831ef4756e
commit
4102078edd
26
pkgs/tools/networking/opensm/default.nix
Normal file
26
pkgs/tools/networking/opensm/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ stdenv, fetchgit, autoconf, automake, libtool, bison, flex, rdma-core }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "opensm-${version}";
|
||||
version = "3.3.20";
|
||||
|
||||
src = fetchgit {
|
||||
url = git://git.openfabrics.org/~halr/opensm.git;
|
||||
rev = name;
|
||||
sha256 = "1hlrn5z32yd4w8bj4z6bsfv84pk178s4rnppbabyjqv1rg3c58wl";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoconf automake libtool bison flex ];
|
||||
|
||||
buildInputs = [ rdma-core ];
|
||||
|
||||
preConfigure = "bash ./autogen.sh";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Infiniband subnet manager";
|
||||
homepage = https://www.openfabrics.org/;
|
||||
license = licenses.gpl2; # dual licensed as 2-clause BSD
|
||||
maintainers = [ maintainers.aij ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
@ -3960,6 +3960,8 @@ with pkgs;
|
||||
inherit (darwin.apple_sdk.frameworks) Carbon;
|
||||
};
|
||||
|
||||
opensm = callPackage ../tools/networking/opensm { };
|
||||
|
||||
openssh =
|
||||
callPackage ../tools/networking/openssh {
|
||||
hpnSupport = false;
|
||||
|
Loading…
Reference in New Issue
Block a user