Compare commits

..

1 Commits

Author SHA1 Message Date
5d861077b4
Add meta to intel 2023
All checks were successful
CI / build:all (pull_request) Successful in 16s
2025-10-10 12:23:34 +02:00
6 changed files with 21 additions and 4 deletions

View File

@ -48,7 +48,9 @@ in
# propagate nixpkgs lib, so we can do bscpkgs.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 // {
lib = prev.lib // {
bsc.maintainers = import ./pkgs/maintainers.nix;
maintainers = prev.lib.maintainers // {
bsc = import ./pkgs/maintainers.nix;
};
};
# Prevent accidental usage of bsc attribute

View File

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

View File

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

View File

@ -91,7 +91,8 @@ stdenv.mkDerivation rec {
'';
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";
longDescription = ''
Trace-based visualization and analysis tool designed to study quantitative

View File

@ -1,5 +1,6 @@
{
stdenv
, lib
, fetchFromGitHub
, autoreconfHook
, boost
@ -57,4 +58,13 @@ stdenv.mkDerivation rec {
xml2
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;
};
}