summary refs log blame commit diff
path: root/pkgs/tools/networking/opensm/default.nix
blob: e0a0dcd56cbee1dbed4a91c0a128b280ef0a39e9 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                                 

                         
                   
                     
 


                         
                  
                                                                    





                                                               



                              
 

                                







                                                            
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, bison, flex, rdma-core }:

stdenv.mkDerivation rec {
  pname = "opensm";
  version = "3.3.22";

  src = fetchFromGitHub {
    owner = "linux-rdma";
    repo = "opensm";
    rev = version;
    sha256 = "1nb6zl93ffbgb8z8728j0dxrmvk3pm0i6a1sn7mpn8ki1vkf2y0j";
  };

  nativeBuildInputs = [ autoconf automake libtool bison flex ];

  buildInputs = [ rdma-core ];

  preConfigure = ''
    patchShebangs ./autogen.sh
    ./autogen.sh
  '';

  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    description = "Infiniband subnet manager";
    homepage = https://www.openfabrics.org/;
    license = licenses.gpl2; # dual licensed as 2-clause BSD
    maintainers = [ maintainers.aij ];
    platforms = [ "x86_64-linux" ];
  };
}