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