summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-12-22 09:23:17 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-12-22 09:23:17 +0000
commit3e10ba6bb9904ae7f23c731a3acfce4ba4ad8dc2 (patch)
tree2840728e2d77def4c56f08a67dccd10c1b0c15ef /pkgs
parent0d949c6161dac9c74d47aec95ad18450db080397 (diff)
Fixing an evaluation error: kernelPackages -> linuxPackages
svn path=/nixpkgs/branches/stdenv-updates/; revision=19077
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/build-support/vm/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/build-support/vm/default.nix b/pkgs/build-support/vm/default.nix
index 1092812443c6..fa33bd3d369b 100644
--- a/pkgs/build-support/vm/default.nix
+++ b/pkgs/build-support/vm/default.nix
@@ -5,7 +5,7 @@ with pkgs;
rec {
- inherit (kernelPackages_2_6_32) kernel;
+ inherit (linuxPackages_2_6_32) kernel;
klibcShrunk = pkgs.klibcShrunk.override { klibc = klibc_15; };