10 lines
192 B
Nix
10 lines
192 B
Nix
|
{ stdenv, coreutils, nix}:
|
||
|
|
||
|
derivation {
|
||
|
name = "kernelscripts";
|
||
|
system = stdenv.system;
|
||
|
builder = ./builder.sh;
|
||
|
createModules = ./create-modules.sh;
|
||
|
inherit stdenv coreutils nix;
|
||
|
}
|