forked from rarias/jungle
Compare commits
2 Commits
5dfa211f08
...
5d861077b4
Author | SHA1 | Date | |
---|---|---|---|
5d861077b4 | |||
391a27454b |
@ -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;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -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
|
||||||
|
@ -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 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -66,13 +66,5 @@ in wrapCCWith {
|
|||||||
'' + optionalString (ompss2rt != null && ompss2rt.pname == "nodes") ''
|
'' + optionalString (ompss2rt != null && ompss2rt.pname == "nodes") ''
|
||||||
echo "export NOSV_HOME=${ompss2rt.nosv}" >> $out/nix-support/cc-wrapper-hook
|
echo "export NOSV_HOME=${ompss2rt.nosv}" >> $out/nix-support/cc-wrapper-hook
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = "https://gitlab.pm.bsc.es/llvm-ompss/llvm-mono";
|
|
||||||
description = "Implementation of OmpSs-2 based on the LLVM infrastructure";
|
|
||||||
maintainers = with lib.maintainers.bsc; [ rpenacob ];
|
|
||||||
platforms = lib.platforms.linux;
|
|
||||||
license = [ lib.licenses.asl20 lib.licenses.llvm-exception ];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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;
|
||||||
};
|
};
|
||||||
|
@ -124,7 +124,7 @@ in
|
|||||||
description = "Nanos6 runtime for OmpSs-2" +
|
description = "Nanos6 runtime for OmpSs-2" +
|
||||||
optionalString (enableDebug) " (with debug symbols)";
|
optionalString (enableDebug) " (with debug symbols)";
|
||||||
maintainers = with lib.maintainers.bsc; [ rarias ];
|
maintainers = with lib.maintainers.bsc; [ rarias ];
|
||||||
platforms = lib.latforms.linux;
|
platforms = lib.platforms.linux;
|
||||||
license = lib.licenses.gpl3Plus;
|
license = lib.licenses.gpl3Plus;
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
@ -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
|
||||||
|
@ -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;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user