From 5a5602184ea2251ac8735123cd857ef45ed35ac4 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Sun, 2 Oct 2011 17:12:50 +0000 Subject: [PATCH] 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 --- pkgs/os-specific/linux/kernel/generic.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/kernel/generic.nix b/pkgs/os-specific/linux/kernel/generic.nix index 9fe1dedda86..eaa90ac0eec 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;