7 stdenv.mkDerivation rec {
12 url = "https://downloadmirror.intel.com/736634/mlc_v${version}.tgz";
13 sha256 = "EDa5V56qCPQxgCu4eddYiWDrk7vkYS0jisnG004L+jQ=";
19 install -Dm755 mlc $out/bin/mlc
22 nativeBuildInputs = [ patchelf ];
25 patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out/bin/mlc
29 homepage = "https://software.intel.com/content/www/us/en/develop/articles/intelr-memory-latency-checker.html";
30 description = "Intel Memory Latency Checker";
31 sourceProvenance = with sourceTypes; [ binaryNativeCode ];
32 license = licenses.unfree;
33 maintainers = with maintainers; [ basvandijk ];
34 platforms = with platforms; linux;