Compare commits

..

1 Commits

Author SHA1 Message Date
ed8d6d1ec7
Add meta to intel 2023
All checks were successful
CI / build:all (pull_request) Successful in 15s
2025-10-09 18:19:05 +02:00
6 changed files with 4 additions and 21 deletions

View File

@ -48,9 +48,7 @@ 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 // {
maintainers = nixpkgs.lib.maintainers // { bsc.maintainers = import ./pkgs/maintainers.nix;
bsc = import ./pkgs/maintainers.nix;
};
}; };
}; };
} }

View File

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

View File

@ -29,7 +29,5 @@ 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

@ -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.maintainers.bsc; [ rarias ]; maintainers = with lib.bsc.maintainers; [ rarias ];
platforms = lib.platforms.all; platforms = lib.platforms.all;
license = lib.licenses.gpl2Plus; license = lib.licenses.gpl2Plus;
}; };

View File

@ -91,8 +91,7 @@ stdenv.mkDerivation rec {
''; '';
meta = { meta = {
homepage = "https://tools.bsc.es/paraver"; homepage = "https://github.com/bsc-performance-tools/wxparaver";
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,6 +1,5 @@
{ {
stdenv stdenv
, lib
, fetchFromGitHub , fetchFromGitHub
, autoreconfHook , autoreconfHook
, boost , boost
@ -58,13 +57,4 @@ 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;
};
} }