Use explicit order in overlays
This commit is contained in:
parent
5b41670f36
commit
1724535495
@ -9,11 +9,12 @@
|
|||||||
./slurm.nix
|
./slurm.nix
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
./users.nix
|
./users.nix
|
||||||
|
|
||||||
../../pkgs/mpi.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs.overlays = [ bscpkgs.bscOverlay ];
|
nixpkgs.overlays = [
|
||||||
|
bscpkgs.bscOverlay
|
||||||
|
(import ../../pkgs/mpi.nix)
|
||||||
|
];
|
||||||
|
|
||||||
nix.nixPath = [
|
nix.nixPath = [
|
||||||
"nixpkgs=${nixpkgs}"
|
"nixpkgs=${nixpkgs}"
|
||||||
|
12
pkgs/mpi.nix
12
pkgs/mpi.nix
@ -1,6 +1,5 @@
|
|||||||
let
|
final: prev:
|
||||||
overlay = final: prev:
|
{
|
||||||
{
|
|
||||||
bsc = prev.bsc.extend (bsc: {
|
bsc = prev.bsc.extend (bsc: {
|
||||||
mpi2 = bsc.mpich;
|
mpi2 = bsc.mpich;
|
||||||
mpich = with final; prev.mpich.overrideAttrs (old: {
|
mpich = with final; prev.mpich.overrideAttrs (old: {
|
||||||
@ -22,10 +21,5 @@ let
|
|||||||
"FCFLAGS=-fallow-argument-mismatch"
|
"FCFLAGS=-fallow-argument-mismatch"
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
};
|
});
|
||||||
};
|
|
||||||
in
|
|
||||||
|
|
||||||
{
|
|
||||||
nixpkgs.overlays = [ overlay ];
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user