2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, bison, flex, rdma-core }:
|
2017-12-25 02:16:39 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "opensm";
|
2021-08-15 17:30:43 +01:00
|
|
|
version = "3.3.24";
|
2017-12-25 02:16:39 +00:00
|
|
|
|
2018-10-03 11:59:07 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "linux-rdma";
|
|
|
|
repo = "opensm";
|
2019-09-09 00:38:31 +01:00
|
|
|
rev = version;
|
2021-08-15 17:30:43 +01:00
|
|
|
sha256 = "sha256-/bqo5r9pVt7vg29xaRRO/9k21AMlmoe2327Ot5gVIwc=";
|
2017-12-25 02:16:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoconf automake libtool bison flex ];
|
|
|
|
|
|
|
|
buildInputs = [ rdma-core ];
|
|
|
|
|
2018-10-08 20:11:14 +01:00
|
|
|
preConfigure = ''
|
|
|
|
patchShebangs ./autogen.sh
|
|
|
|
./autogen.sh
|
|
|
|
'';
|
2017-12-25 02:16:39 +00:00
|
|
|
|
2018-10-03 11:59:07 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-12-25 02:16:39 +00:00
|
|
|
description = "Infiniband subnet manager";
|
2020-03-18 09:42:25 +00:00
|
|
|
homepage = "https://www.openfabrics.org/";
|
2017-12-25 02:16:39 +00:00
|
|
|
license = licenses.gpl2; # dual licensed as 2-clause BSD
|
|
|
|
maintainers = [ maintainers.aij ];
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
};
|
|
|
|
}
|