Add meta to intel 2023
All checks were successful
CI / build:all (pull_request) Successful in 16s

This commit is contained in:
Aleix Boné 2025-10-06 16:42:40 +02:00
parent 391a27454b
commit 5d861077b4
No known key found for this signature in database
7 changed files with 40 additions and 4 deletions

View File

@ -48,7 +48,9 @@ in
# propagate nixpkgs lib, so we can do bscpkgs.lib # propagate nixpkgs lib, so we can do bscpkgs.lib
lib = nixpkgs.lib // { lib = nixpkgs.lib // {
bsc.maintainers = import ./pkgs/maintainers.nix; maintainers = nixpkgs.lib.maintainers // {
bsc = import ./pkgs/maintainers.nix;
};
}; };
}; };
} }

View File

@ -123,7 +123,9 @@ let
in bscPkgs // { in bscPkgs // {
lib = prev.lib // { lib = prev.lib // {
bsc.maintainers = import ./pkgs/maintainers.nix; maintainers = prev.lib.maintainers // {
bsc = import ./pkgs/maintainers.nix;
};
}; };
# Prevent accidental usage of bsc attribute # Prevent accidental usage of bsc attribute

View File

@ -29,5 +29,7 @@ in stdenv.mkDerivation {
description = "AMD Power Profiler Driver"; description = "AMD Power Profiler Driver";
homepage = "https://www.amd.com/es/developer/uprof.html"; homepage = "https://www.amd.com/es/developer/uprof.html";
platforms = lib.platforms.linux; platforms = lib.platforms.linux;
license = lib.licenses.unfree;
maintainers = with lib.maintainers.bsc; [ rarias ];
}; };
} }

View File

@ -26,6 +26,13 @@
let let
meta = {
description = "Intel oneapi hpckit package component";
homepage = "https://www.intel.com/content/www/us/en/developer/tools/oneapi/hpc-toolkit-download.html";
license = lib.licenses.unfree;
maintainers = with lib.maintainers.bsc; [ abonerib ];
};
gcc = gcc13; gcc = gcc13;
v = { v = {
@ -87,6 +94,8 @@ let
dpkg -x $src $out dpkg -x $src $out
done done
''; '';
inherit meta;
}; };
joinDebs = name: names: joinDebs = name: names:
@ -145,6 +154,8 @@ let
sed -i "s:I_MPI_SUBSTITUTE_INSTALLDIR:$out:g" "$i" sed -i "s:I_MPI_SUBSTITUTE_INSTALLDIR:$out:g" "$i"
done done
''; '';
inherit meta;
}; };
intel-tbb = stdenv.mkDerivation rec { intel-tbb = stdenv.mkDerivation rec {
@ -183,6 +194,8 @@ let
rsync -a lib/intel64/gcc4.8/ $out/lib/ rsync -a lib/intel64/gcc4.8/ $out/lib/
popd popd
''; '';
inherit meta;
}; };
intel-compiler-shared = stdenv.mkDerivation rec { intel-compiler-shared = stdenv.mkDerivation rec {
@ -240,6 +253,8 @@ let
popd popd
popd popd
''; '';
inherit meta;
}; };
@ -305,6 +320,8 @@ let
ln -s $out/lib $out/lib_lin ln -s $out/lib $out/lib_lin
popd popd
''; '';
inherit meta;
}; };
intel-compiler = stdenv.mkDerivation rec { intel-compiler = stdenv.mkDerivation rec {
@ -392,6 +409,8 @@ let
rsync -a documentation/en/man/common/ $out/share/man/ rsync -a documentation/en/man/common/ $out/share/man/
popd popd
''; '';
inherit meta;
}; };
wrapIntel = { cc, mygcc, extraBuild ? "", extraInstall ? "" }: wrapIntel = { cc, mygcc, extraBuild ? "", extraInstall ? "" }:

View File

@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
meta = { meta = {
description = "lmbench"; description = "lmbench";
homepage = "https://github.com/intel/lmbench"; homepage = "https://github.com/intel/lmbench";
maintainers = with lib.bsc.maintainers; [ rarias ]; maintainers = with lib.maintainers.bsc; [ rarias ];
platforms = lib.platforms.all; platforms = lib.platforms.all;
license = lib.licenses.gpl2Plus; license = lib.licenses.gpl2Plus;
}; };

View File

@ -91,7 +91,8 @@ stdenv.mkDerivation rec {
''; '';
meta = { meta = {
homepage = "https://github.com/bsc-performance-tools/wxparaver"; homepage = "https://tools.bsc.es/paraver";
downloadPage = "https://github.com/bsc-performance-tools/wxparaver";
description = "Performance analyzer based on event traces"; description = "Performance analyzer based on event traces";
longDescription = '' longDescription = ''
Trace-based visualization and analysis tool designed to study quantitative Trace-based visualization and analysis tool designed to study quantitative

View File

@ -1,5 +1,6 @@
{ {
stdenv stdenv
, lib
, fetchFromGitHub , fetchFromGitHub
, autoreconfHook , autoreconfHook
, boost , boost
@ -57,4 +58,13 @@ stdenv.mkDerivation rec {
xml2 xml2
zlib zlib
]; ];
meta = {
homepage = "https://tools.bsc.es/paraver";
downloadPage = "https://github.com/bsc-performance-tools/paraver-kernel";
description = "Kernel library used by wxparaver";
maintainers = with lib.maintainers.bsc; [ rarias ];
platforms = lib.platforms.linux;
license = lib.licenses.lgpl21Plus;
};
} }