Merge pull request #47732 from markuskowa/opensm-up
opensm: 3.3.20 -> 3.3.21
This commit is contained in:
commit
c60e8f436c
@ -1,20 +1,26 @@
|
|||||||
{ stdenv, fetchgit, autoconf, automake, libtool, bison, flex, rdma-core }:
|
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, bison, flex, rdma-core }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "opensm-${version}";
|
name = "opensm-${version}";
|
||||||
version = "3.3.20";
|
version = "3.3.21";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchFromGitHub {
|
||||||
url = git://git.openfabrics.org/~halr/opensm.git;
|
owner = "linux-rdma";
|
||||||
rev = name;
|
repo = "opensm";
|
||||||
sha256 = "1hlrn5z32yd4w8bj4z6bsfv84pk178s4rnppbabyjqv1rg3c58wl";
|
rev = "${version}";
|
||||||
|
sha256 = "0iikw28vslxq3baq9qmmw08yay7l524wciz7dv7km09ylcbx23b7";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoconf automake libtool bison flex ];
|
nativeBuildInputs = [ autoconf automake libtool bison flex ];
|
||||||
|
|
||||||
buildInputs = [ rdma-core ];
|
buildInputs = [ rdma-core ];
|
||||||
|
|
||||||
preConfigure = "bash ./autogen.sh";
|
preConfigure = ''
|
||||||
|
patchShebangs ./autogen.sh
|
||||||
|
./autogen.sh
|
||||||
|
'';
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Infiniband subnet manager";
|
description = "Infiniband subnet manager";
|
||||||
|
Loading…
Reference in New Issue
Block a user