Merge pull request #81913 from helsinki-systems/upd/mstflint
mstflint: 4.4 -> 4.14
This commit is contained in:
commit
7e80329ba5
@ -1,19 +1,26 @@
|
|||||||
{ stdenv, fetchurl, zlib, libibmad }:
|
{ stdenv, autoreconfHook, fetchFromGitHub, zlib, libibmad, openssl }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "mstflint-4.4.0-1.12.gd1edd58";
|
pname = "mstflint";
|
||||||
|
version = "4.14.0-1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://www.openfabrics.org/downloads/mstflint/${name}.tar.gz";
|
owner = "Mellanox";
|
||||||
sha256 = "0kg33i5s5zdc7kigww62r0b824zfw06r757fl6jwrq7lj91j0380";
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0xrwx623vl17cqzpacil74m2fi4xrshgvvzxiplz1wq47gq7wp1i";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ zlib libibmad ];
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
|
buildInputs = [ zlib libibmad openssl ];
|
||||||
|
|
||||||
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
|
dontDisableStatic = true; # the build fails without this. should probably be reported upstream
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://www.openfabrics.org/";
|
homepage = "https://github.com/Mellanox/mstflint";
|
||||||
license = licenses.gpl2;
|
license = with licenses; [ gpl2 bsd2 ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
broken = true; # 2018-04-11
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user