From 07289a3b71dbf822f0206e9b2272ca1c9593c3c9 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sat, 8 Oct 2016 15:53:37 +0200 Subject: [PATCH] debug-info: use pkgs.lib.overrideDerivation (fixed) See 87793207e806e837a3ae2958f3e770caec6f2277. --- nixos/modules/config/debug-info.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/config/debug-info.nix b/nixos/modules/config/debug-info.nix index e2e4c710fb5..671a59f52f6 100644 --- a/nixos/modules/config/debug-info.nix +++ b/nixos/modules/config/debug-info.nix @@ -20,7 +20,7 @@ with lib; nixpkgs.config.packageOverrides = pkgs: { - hello = pkgs.stdenv.lib.overrideDerivation pkgs.hello (attrs: { + hello = pkgs.lib.overrideDerivation pkgs.hello (attrs: { outputs = attrs.outputs or ["out"] ++ ["debug"]; buildInputs = attrs.buildInputs ++ [<nixpkgs/pkgs/build-support/setup-hooks/separate-debug-info.sh>]; });