Begin moving bsc packages to root attribute

This commit is contained in:
2023-09-19 10:33:32 +02:00
parent fd766d8ff8
commit 51dcc6896e
8 changed files with 432 additions and 438 deletions

View File

@@ -1,4 +1,4 @@
{ self, super, bsc, callPackage }:
{ self, super, bsc, testPkgs }:
let
stdenv = self.stdenv;
@@ -10,23 +10,7 @@ stdenv.mkDerivation rec {
dontUnpack = true;
# Just build some packages
buildInputs = with bsc; [
# Compilers
icc
clangOmpss2
mcxx
# MPI
impi
mpich
openmpi
tampi
# Tools
ovni
# extrae # Broken
wxparaver
# Runtimes
nanos6
] ++ bsc.testAll;
buildInputs = testPkgs;
buildPhase = ''
if [ -e /boot ]; then

View File

@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
dontConfigure = true;
hardeningDisable = [ "all" ];
#NIX_DEBUG = 1;
buildInputs = [ strace gdb ];
buildInputs = [ ]; #strace gdb;
# NODES requires access to /sys/devices to request NUMA information. It will
# fail to run otherwise, so we disable the sandbox for this test.
__noChroot = true;