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

33 lines
788 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, bison, flex, rdma-core }:
2017-12-25 02:16:39 +00:00
stdenv.mkDerivation rec {
pname = "opensm";
2020-03-18 09:42:25 +00:00
version = "3.3.23";
2017-12-25 02:16:39 +00:00
src = fetchFromGitHub {
owner = "linux-rdma";
repo = "opensm";
2019-09-08 23:38:31 +00:00
rev = version;
2020-03-18 09:42:25 +00:00
sha256 = "0r0nw7b2711ca6mrj19ymg97x862hdxv54fhhm4kiqvdh6n75y0s";
2017-12-25 02:16:39 +00:00
};
nativeBuildInputs = [ autoconf automake libtool bison flex ];
buildInputs = [ rdma-core ];
preConfigure = ''
patchShebangs ./autogen.sh
./autogen.sh
'';
2017-12-25 02:16:39 +00:00
enableParallelBuilding = true;
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" ];
};
}