3
0
Fork 0
forked from mirrors/nixpkgs

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 {
name = "kernelscripts";
system = stdenv.system;
builder = ./builder.sh;
createModules = ./create-modules.sh;
inherit stdenv coreutils nix;
inherit stdenv coreutils nix findutils;
}