2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, patchelf }:
|
2020-11-03 21:54:07 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "mlc";
|
2022-07-19 16:48:39 +00:00
|
|
|
version = "3.9a";
|
2020-11-03 21:54:07 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-07-19 16:48:39 +00:00
|
|
|
url = "https://downloadmirror.intel.com/736634/mlc_v${version}.tgz";
|
2024-08-22 15:21:34 +00:00
|
|
|
sha256 = "EDa5V56qCPQxgCu4eddYiWDrk7vkYS0jisnG004L+jQ=";
|
2020-11-03 21:54:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
sourceRoot = "Linux";
|
|
|
|
|
|
|
|
installPhase = ''
|
2020-11-04 09:24:38 +00:00
|
|
|
install -Dm755 mlc $out/bin/mlc
|
2020-11-03 21:54:07 +00:00
|
|
|
'';
|
|
|
|
|
2020-11-04 09:24:38 +00:00
|
|
|
nativeBuildInputs = [ patchelf ];
|
|
|
|
|
|
|
|
fixupPhase = ''
|
2020-11-03 21:54:07 +00:00
|
|
|
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out/bin/mlc
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-11-03 21:54:07 +00:00
|
|
|
homepage = "https://software.intel.com/content/www/us/en/develop/articles/intelr-memory-latency-checker.html";
|
|
|
|
description = "Intel Memory Latency Checker";
|
2022-06-16 23:40:08 +00:00
|
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
2020-11-04 09:24:38 +00:00
|
|
|
license = licenses.unfree;
|
|
|
|
maintainers = with maintainers; [ basvandijk ];
|
|
|
|
platforms = with platforms; linux;
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "mlc";
|
2020-11-03 21:54:07 +00:00
|
|
|
};
|
|
|
|
}
|