nixpkgs/pkgs/tools/networking/opensm/default.nix

33 lines
790 B
Nix
Raw Normal View History

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