mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
a0d71d4a50
svn path=/nixpkgs/trunk/; revision=5863
11 lines
242 B
Nix
11 lines
242 B
Nix
{ stdenv, coreutils, nix, findutils}:
|
|
|
|
derivation {
|
|
name = "kernelscripts";
|
|
system = stdenv.system;
|
|
builder = ./builder.sh;
|
|
createModules = ./create-modules.sh;
|
|
inherit stdenv coreutils nix findutils;
|
|
kernelpkgs = ./kernel.nix;
|
|
}
|