54f4af6054
svn path=/nixpkgs/trunk/; revision=4567
10 lines
213 B
Nix
10 lines
213 B
Nix
{ stdenv, coreutils, nix, findutils}:
|
|
|
|
derivation {
|
|
name = "kernelscripts";
|
|
system = stdenv.system;
|
|
builder = ./builder.sh;
|
|
createModules = ./create-modules.sh;
|
|
inherit stdenv coreutils nix findutils;
|
|
}
|