summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2011-10-02 17:12:50 +0000
committerShea Levy <shea@shealevy.com>2011-10-02 17:12:50 +0000
commit5a5602184ea2251ac8735123cd857ef45ed35ac4 (patch)
tree174f3e8ae2da1a69d18766b0d6a79aa8ab271939 /pkgs/os-specific
parent494e927d1cd8ce252379d64770c939446da7253b (diff)
downloadnixlib-5a5602184ea2251ac8735123cd857ef45ed35ac4.tar
nixlib-5a5602184ea2251ac8735123cd857ef45ed35ac4.tar.gz
nixlib-5a5602184ea2251ac8735123cd857ef45ed35ac4.tar.bz2
nixlib-5a5602184ea2251ac8735123cd857ef45ed35ac4.tar.lz
nixlib-5a5602184ea2251ac8735123cd857ef45ed35ac4.tar.xz
nixlib-5a5602184ea2251ac8735123cd857ef45ed35ac4.tar.zst
nixlib-5a5602184ea2251ac8735123cd857ef45ed35ac4.zip
Whoops, forgot to re-inherit postBuild now that it's not set manually
I really should have done these changes in a topic branch, sorry

svn path=/nixpkgs/trunk/; revision=29567
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/kernel/generic.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/kernel/generic.nix b/pkgs/os-specific/linux/kernel/generic.nix
index 9fe1dedda864..eaa90ac0eeca 100644
--- a/pkgs/os-specific/linux/kernel/generic.nix
+++ b/pkgs/os-specific/linux/kernel/generic.nix
@@ -77,7 +77,7 @@ stdenv.mkDerivation {
 
   generateConfig = ./generate-config.pl;
 
-  inherit preConfigure src module_init_tools localVersion postInstall;
+  inherit preConfigure src module_init_tools localVersion postInstall postBuild;
 
   patches = map (p: p.patch) kernelPatches;