Archived
1
0
forked from rarias/bscpkgs

Add meta to packages

This commit is contained in:
2025-09-30 15:10:38 +02:00
parent fd9e72949b
commit e101159e0e
22 changed files with 172 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
{ stdenv
, lib
, rpmextract
, gcc
, zlib
@@ -101,4 +102,12 @@ stdenv.mkDerivation rec {
patchelf --set-rpath "$out/lib:${rdma-core}/lib:${libpsm2}/lib" $out/lib/libfabric.so
echo "Patched RPATH in libfabric.so to: $(patchelf --print-rpath $out/lib/libfabric.so)"
'';
meta = with lib; {
homepage = "https://www.intel.com/content/www/us/en/developer/tools/overview.html";
description = "Intel compiler";
maintainers = with maintainers.bsc; [ rarias ];
platforms = platforms.linux;
license = licenses.unfree;
};
}