286aa47c06
nix-shell maintainers/scripts/update.nix --argstr package scx.rustscheds Should be ran from now on
11 lines
204 B
Nix
11 lines
204 B
Nix
{
|
|
lib,
|
|
callPackage,
|
|
}:
|
|
|
|
lib.mapAttrs (name: scheduler: callPackage scheduler { }) {
|
|
cscheds = import ./scx_cscheds.nix;
|
|
rustscheds = import ./scx_rustscheds.nix;
|
|
full = import ./scx_full.nix;
|
|
}
|