bscpkgs/bsc/intel-compiler/icc2020.nix

55 lines
1.3 KiB
Nix
Raw Normal View History

2020-07-01 23:58:29 +08:00
{ stdenv
, rpmextract
, autoPatchelfHook
, gcc
2020-07-10 19:42:55 +08:00
, intel-mpi
2020-07-01 23:58:29 +08:00
}:
stdenv.mkDerivation rec {
2020-07-02 21:32:52 +08:00
version = "${year}.${v_a}.${v_b}";
2020-07-01 23:58:29 +08:00
name = "intel-compiler-${version}";
# From Arch Linux PKGBUILD
2020-07-21 15:33:41 +08:00
dir_nr="16526";
2020-07-01 23:58:29 +08:00
year="2020";
v_a="1";
v_b="217";
update="1";
composer_xe_dir="compilers_and_libraries_${year}.${v_a}.${v_b}";
tgz="parallel_studio_xe_2020_update${update}_cluster_edition.tgz";
2020-07-24 01:00:03 +08:00
src = builtins.fetchTarball {
2020-07-01 23:58:29 +08:00
url = "http://registrationcenter-download.intel.com/akdlm/irc_nas/tec/${dir_nr}/${tgz}";
2020-07-24 01:00:03 +08:00
sha256 = "1yg2q01ra37ywd7mmgcvkxpsvjz31af91ibybndxn2s0fz7lxibp";
2020-07-01 23:58:29 +08:00
};
buildInputs = [
rpmextract
autoPatchelfHook
gcc.cc.lib
gcc
2020-07-10 19:42:55 +08:00
intel-mpi
2020-07-01 23:58:29 +08:00
];
# The gcc package is required for building other programs
propagatedBuildInputs = [ gcc ];
2020-07-01 23:58:29 +08:00
installPhase = ''
rpmextract rpm/intel-icc-*.rpm
rpmextract rpm/intel-comp-*.rpm
rpmextract rpm/intel-c-comp-*.rpm
rpmextract rpm/intel-openmp*.rpm
2020-07-10 19:42:55 +08:00
rpmextract rpm/intel-ifort*.rpm
2020-07-01 23:58:29 +08:00
mkdir -p $out/{bin,lib,include}
pushd ./opt/intel/${composer_xe_dir}/linux/
cp -a bin/intel64/* $out/bin/
cp -a compiler/include/* $out/include/
cp -a compiler/lib/intel64_lin/* $out/lib/
2020-07-10 23:04:21 +08:00
ln -s lib $out/lib_lin
2020-07-01 23:58:29 +08:00
rm $out/lib/*.dbg
popd
'';
}