Nix: add deprecation messages for removed/renamed flags
This commit is contained in:
parent
c1bcbdb3dd
commit
e510c6a7fc
1 changed files with 89 additions and 84 deletions
|
|
@ -33,7 +33,12 @@
|
||||||
wrapRuntimeDeps ? true,
|
wrapRuntimeDeps ? true,
|
||||||
version ? "git",
|
version ? "git",
|
||||||
commit,
|
commit,
|
||||||
|
# deprecated flags
|
||||||
|
nvidiaPatches ? false,
|
||||||
|
hidpiXWayland ? false,
|
||||||
}:
|
}:
|
||||||
|
assert lib.assertMsg (!nvidiaPatches) "The option `nvidiaPatches` has been renamed `enableNvidiaPatches`";
|
||||||
|
assert lib.assertMsg (!hidpiXWayland) "The option `hidpiXWayland` has been removed. Please refer https://wiki.hyprland.org/Configuring/XWayland";
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "hyprland${lib.optionalString enableNvidiaPatches "-nvidia"}${lib.optionalString debug "-debug"}";
|
pname = "hyprland${lib.optionalString enableNvidiaPatches "-nvidia"}${lib.optionalString debug "-debug"}";
|
||||||
inherit version;
|
inherit version;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue