Add skeleton meta to intel 2023

This commit is contained in:
Aleix Boné 2025-10-06 16:42:40 +02:00
parent bec363d125
commit f6864c7bce
No known key found for this signature in database

View File

@ -87,6 +87,13 @@ let
dpkg -x $src $out
done
'';
meta = {
description = "";
homepage = "";
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [ ];
};
};
joinDebs = name: names:
@ -145,6 +152,13 @@ let
sed -i "s:I_MPI_SUBSTITUTE_INSTALLDIR:$out:g" "$i"
done
'';
meta = {
description = "";
homepage = "";
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [ ];
};
};
intel-tbb = stdenv.mkDerivation rec {
@ -183,6 +197,13 @@ let
rsync -a lib/intel64/gcc4.8/ $out/lib/
popd
'';
meta = {
description = "";
homepage = "";
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [ ];
};
};
intel-compiler-shared = stdenv.mkDerivation rec {
@ -240,6 +261,13 @@ let
popd
popd
'';
meta = {
description = "";
homepage = "";
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [ ];
};
};
@ -305,6 +333,13 @@ let
ln -s $out/lib $out/lib_lin
popd
'';
meta = {
description = "";
homepage = "";
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [ ];
};
};
intel-compiler = stdenv.mkDerivation rec {
@ -392,6 +427,13 @@ let
rsync -a documentation/en/man/common/ $out/share/man/
popd
'';
meta = {
description = "";
homepage = "";
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [ ];
};
};
wrapIntel = { cc, mygcc, extraBuild ? "", extraInstall ? "" }: