nixpkgs/pkgs/tools/system/mlc/default.nix

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

33 lines
901 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, patchelf }:
stdenv.mkDerivation rec {
pname = "mlc";
version = "3.9a";
src = fetchurl {
url = "https://downloadmirror.intel.com/736634/mlc_v${version}.tgz";
2024-08-22 15:21:34 +00:00
sha256 = "EDa5V56qCPQxgCu4eddYiWDrk7vkYS0jisnG004L+jQ=";
};
sourceRoot = "Linux";
installPhase = ''
2020-11-04 09:24:38 +00:00
install -Dm755 mlc $out/bin/mlc
'';
2020-11-04 09:24:38 +00:00
nativeBuildInputs = [ patchelf ];
fixupPhase = ''
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out/bin/mlc
'';
meta = with lib; {
homepage = "https://software.intel.com/content/www/us/en/develop/articles/intelr-memory-latency-checker.html";
description = "Intel Memory Latency Checker";
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";
};
}