nixpkgs/pkgs/tools/misc/mstflint/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

119 lines
3.0 KiB
Nix
Raw Normal View History

2021-09-06 01:28:02 +00:00
{ lib
, stdenv
, fetchurl
, rdma-core
2021-09-06 01:28:02 +00:00
, openssl
, zlib
, xz
, expat
, boost
, curl
, pkg-config
, libxml2
, pciutils
, busybox
, python3
, automake
, autoconf
, libtool
, git
# use this to shrink the package's footprint if necessary (e.g. for hardened appliances)
, onlyFirmwareUpdater ? false
# contains binary-only libraries
, enableDPA ? true
2021-09-06 01:28:02 +00:00
}:
2014-09-15 02:00:25 +00:00
2016-08-24 18:04:38 +00:00
stdenv.mkDerivation rec {
2020-03-05 13:27:46 +00:00
pname = "mstflint";
version = "4.28.0-1";
2014-09-15 02:00:25 +00:00
2021-09-06 01:28:02 +00:00
src = fetchurl {
url = "https://github.com/Mellanox/mstflint/releases/download/v${version}/mstflint-${version}.tar.gz";
hash = "sha256-zvCDc/9wAqT3XBI9A5kOprnnm52Ek8oGe2Je3dKHti0=";
2014-09-15 02:00:25 +00:00
};
nativeBuildInputs = [
autoconf
automake
libtool
pkg-config
libxml2
git
];
2021-09-06 01:28:02 +00:00
buildInputs = [
rdma-core
2021-09-06 01:28:02 +00:00
zlib
libxml2
openssl
] ++ lib.optionals (!onlyFirmwareUpdater) [
boost
curl
expat
xz
python3
];
preConfigure = ''
export CPPFLAGS="-I$(pwd)/tools_layouts -isystem ${libxml2.dev}/include/libxml2"
export INSTALL_BASEDIR=$out
./autogen.sh
'';
# Cannot use wrapProgram since the python script's logic depends on the
# filename and will get messed up if the executable is named ".xyz-wrapped".
# That is why the python executable and runtime dependencies are injected
# this way.
#
# Remove host_cpu replacement again (see https://github.com/Mellanox/mstflint/pull/865),
# needs to hit master or a release. master_devel may be rebased.
#
# Remove patch for regex check, after https://github.com/Mellanox/mstflint/pull/871
# got merged.
prePatch = [
''
patchShebangs eval_git_sha.sh
substituteInPlace configure.ac \
--replace "build_cpu" "host_cpu"
substituteInPlace common/compatibility.h \
--replace "#define ROOT_PATH \"/\"" "#define ROOT_PATH \"$out/\""
substituteInPlace configure.ac \
--replace 'Whether to use GNU C regex])' 'Whether to use GNU C regex])],[AC_MSG_RESULT([yes])'
''
(lib.optionals (!onlyFirmwareUpdater) ''
substituteInPlace common/python_wrapper.sh \
--replace \
'exec $PYTHON_EXEC $SCRIPT_PATH "$@"' \
'export PATH=$PATH:${lib.makeBinPath [ (placeholder "out") pciutils busybox]}; exec ${python3}/bin/python3 $SCRIPT_PATH "$@"'
'')
2021-09-06 01:28:02 +00:00
];
2020-03-05 13:27:46 +00:00
configureFlags = [
"--enable-xml2"
"--datarootdir=${placeholder "out"}/share"
] ++ lib.optionals (!onlyFirmwareUpdater) [
"--enable-adb-generic-tools"
"--enable-cs"
"--enable-dc"
"--enable-fw-mgr"
"--enable-inband"
"--enable-rdmem"
] ++ lib.optionals enableDPA [
"--enable-dpa"
];
enableParallelBuilding = true;
2020-03-05 13:27:46 +00:00
hardeningDisable = [ "format" ];
dontDisableStatic = true; # the build fails without this. should probably be reported upstream
2014-09-15 02:00:25 +00:00
meta = with lib; {
description = "Open source version of Mellanox Firmware Tools (MFT)";
2020-03-05 13:27:46 +00:00
homepage = "https://github.com/Mellanox/mstflint";
2024-04-26 11:35:31 +00:00
license = with licenses; [ gpl2Only bsd2 ];
maintainers = with maintainers; [ thillux ];
2014-09-15 02:00:25 +00:00
platforms = platforms.linux;
};
}