WIP: Introduce Intel 2024, 2025, tasycl and oneMath #3

Draft
abonerib wants to merge 486 commits from abonerib/bscpkgs:pkgs/tasycl into master
2 changed files with 27 additions and 32 deletions
Showing only changes of commit f2434a17c2 - Show all commits

View File

@ -9,11 +9,12 @@
./slurm.nix
./ssh.nix
./users.nix
../../pkgs/mpi.nix
];
nixpkgs.overlays = [ bscpkgs.bscOverlay ];
nixpkgs.overlays = [
bscpkgs.bscOverlay
(import ../../pkgs/mpi.nix)
];
nix.nixPath = [
"nixpkgs=${nixpkgs}"

View File

@ -1,5 +1,4 @@
let
overlay = final: prev:
final: prev:
{
bsc = prev.bsc.extend (bsc: {
mpi2 = bsc.mpich;
@ -22,10 +21,5 @@ let
"FCFLAGS=-fallow-argument-mismatch"
];
});
};
};
in
{
nixpkgs.overlays = [ overlay ];
});
}