mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 00:10:30 +00:00
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;
|
|
}
|