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-25 05:16:39 +03:00
stdenv.mkDerivation rec {
pname = "opensm";
2020-03-18 12:42:25 +03:00
version = "3.3.23";
2017-12-25 05:16:39 +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 ];
preConfigure = ''
patchShebangs ./autogen.sh
./autogen.sh
'';
2017-12-25 05:16:39 +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" ];
};
}