summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-31 03:03:11 +0000
committerGitHub <noreply@github.com>2021-01-31 03:03:11 +0000
commit227693ed69a03605d7b9d5e051f2158aaf8cbe3c (patch)
tree7863bafe87b90c2ca044bde8c120615314ace585 /pkgs
parent0fa48587917c6ed7be02aba4d76ca126c69407a9 (diff)
Update pkgs/stdenv/generic/default.nix
Co-authored-by: John Ericson <git@JohnEricson.me>
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/stdenv/generic/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/stdenv/generic/default.nix b/pkgs/stdenv/generic/default.nix
index 125eff9aec57..52d57a6decee 100644
--- a/pkgs/stdenv/generic/default.nix
+++ b/pkgs/stdenv/generic/default.nix
@@ -153,11 +153,11 @@ let
}) mkDerivation;
# Slated for deprecation in 21.11
- lib = builtins.trace ( "Warning: `stdenv.lib` is deprecated "
- + "and will be removed in the next release. "
- + "Please use `pkgs.lib` instead. "
- + "For more information see https://github.com/NixOS/nixpkgs/issues/108938")
- lib;
+ lib = builtins.trace
+ ( "Warning: `stdenv.lib` is deprecated and will be removed in the next release."
+ + " Please use `pkgs.lib` instead."
+ + " For more information see https://github.com/NixOS/nixpkgs/issues/108938")
+ lib;
inherit fetchurlBoot;