don't forget findutils

svn path=/nixpkgs/trunk/; revision=4567
This commit is contained in:
Armijn Hemel 2006-01-16 17:30:56 +00:00
parent c1679931f7
commit 54f4af6054

View file

@ -1,9 +1,9 @@
{ stdenv, coreutils, nix}: { stdenv, coreutils, nix, findutils}:
derivation { derivation {
name = "kernelscripts"; name = "kernelscripts";
system = stdenv.system; system = stdenv.system;
builder = ./builder.sh; builder = ./builder.sh;
createModules = ./create-modules.sh; createModules = ./create-modules.sh;
inherit stdenv coreutils nix; inherit stdenv coreutils nix findutils;
} }