1 { lib, stdenv, fetchurl, patchelf }:
2 stdenv.mkDerivation rec {
7 url = "https://downloadmirror.intel.com/736634/mlc_v${version}.tgz";
8 sha256 = "EDa5V56qCPQxgCu4eddYiWDrk7vkYS0jisnG004L+jQ=";
14 install -Dm755 mlc $out/bin/mlc
17 nativeBuildInputs = [ patchelf ];
20 patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out/bin/mlc
24 homepage = "https://software.intel.com/content/www/us/en/develop/articles/intelr-memory-latency-checker.html";
25 description = "Intel Memory Latency Checker";
26 sourceProvenance = with sourceTypes; [ binaryNativeCode ];
27 license = licenses.unfree;
28 maintainers = with maintainers; [ basvandijk ];
29 platforms = with platforms; linux;