Merge pull request #136831 from mweinelt/mstflint
This commit is contained in:
commit
375fc047da
1 changed files with 16 additions and 9 deletions
|
@ -1,18 +1,25 @@
|
||||||
{ lib, stdenv, autoreconfHook, fetchFromGitHub, zlib, libibmad, openssl }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchurl
|
||||||
|
, libibmad
|
||||||
|
, openssl
|
||||||
|
, zlib
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "mstflint";
|
pname = "mstflint";
|
||||||
version = "4.14.0-3";
|
version = "4.17.0-1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchurl {
|
||||||
owner = "Mellanox";
|
url = "https://github.com/Mellanox/mstflint/releases/download/v${version}/mstflint-${version}.tar.gz";
|
||||||
repo = pname;
|
sha256 = "030vpiv44sxmjf0dng91ziq1cggwj33yp0l4xc6cdhnrv2prjs7y";
|
||||||
rev = "v${version}";
|
|
||||||
sha256 = "0zy9npyzf7dkxlfl9mx6997aa61mk23ixpjb01ckb1wvav5k6z82";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook ];
|
buildInputs = [
|
||||||
buildInputs = [ zlib libibmad openssl ];
|
libibmad
|
||||||
|
openssl
|
||||||
|
zlib
|
||||||
|
];
|
||||||
|
|
||||||
hardeningDisable = [ "format" ];
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue