mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
Remove redundant space
This commit is contained in:
parent
359935a1ef
commit
4c764479a6
1 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ let
|
||||||
inherit from to;
|
inherit from to;
|
||||||
name = "Obsolete name";
|
name = "Obsolete name";
|
||||||
use = x: builtins.trace "Obsolete option `${showOption from}' is used. It was renamed to `${showOption to}'." x;
|
use = x: builtins.trace "Obsolete option `${showOption from}' is used. It was renamed to `${showOption to}'." x;
|
||||||
define = x: builtins.trace "Obsolete option `${showOption from}' is used. It was renamed to `${showOption to}'." x;
|
define = x: builtins.trace "Obsolete option `${showOption from}' is used. It was renamed to `${showOption to}'." x;
|
||||||
};
|
};
|
||||||
|
|
||||||
# abort if deprecated option is used
|
# abort if deprecated option is used
|
||||||
|
@ -25,7 +25,7 @@ let
|
||||||
inherit from to;
|
inherit from to;
|
||||||
name = "Deprecated name";
|
name = "Deprecated name";
|
||||||
use = x: abort "Deprecated option `${showOption from}' is used. It was renamed to `${showOption to}'.";
|
use = x: abort "Deprecated option `${showOption from}' is used. It was renamed to `${showOption to}'.";
|
||||||
define = x: abort "Deprecated option `${showOption from}' is used. It was renamed to `${showOption to}'.";
|
define = x: abort "Deprecated option `${showOption from}' is used. It was renamed to `${showOption to}'.";
|
||||||
};
|
};
|
||||||
|
|
||||||
showOption = concatStringsSep ".";
|
showOption = concatStringsSep ".";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue