summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorArmijn Hemel <armijn@gpl-violations.org>2006-01-16 17:30:56 +0000
committerArmijn Hemel <armijn@gpl-violations.org>2006-01-16 17:30:56 +0000
commit54f4af6054e53acb7fc9282ceca0bd4ab5982705 (patch)
tree1a1009025d7d64728799926fb3c8a748b4869687 /pkgs/os-specific
parentc1679931f70c4c3fa36dcd5a0d337befc7bc681f (diff)
downloadnixpkgs-54f4af6054e53acb7fc9282ceca0bd4ab5982705.tar
nixpkgs-54f4af6054e53acb7fc9282ceca0bd4ab5982705.tar.gz
nixpkgs-54f4af6054e53acb7fc9282ceca0bd4ab5982705.tar.bz2
nixpkgs-54f4af6054e53acb7fc9282ceca0bd4ab5982705.tar.lz
nixpkgs-54f4af6054e53acb7fc9282ceca0bd4ab5982705.tar.xz
nixpkgs-54f4af6054e53acb7fc9282ceca0bd4ab5982705.tar.zst
nixpkgs-54f4af6054e53acb7fc9282ceca0bd4ab5982705.zip
don't forget findutils
svn path=/nixpkgs/trunk/; revision=4567
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/kernelscripts/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernelscripts/default.nix b/pkgs/os-specific/linux/kernelscripts/default.nix
index 69d9f4e56de..582d3bd677f 100644
--- a/pkgs/os-specific/linux/kernelscripts/default.nix
+++ b/pkgs/os-specific/linux/kernelscripts/default.nix
@@ -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;
 }