nixos/opengl: fix wrong function application
No idea how that one slipped through. Thanks for catching @maxeaubrey!
This commit is contained in:
@@ -99,7 +99,7 @@ in
|
|||||||
You should only need to adjust this if you require a newer Mesa
|
You should only need to adjust this if you require a newer Mesa
|
||||||
version for your hardware or because you need to patch a bug.
|
version for your hardware or because you need to patch a bug.
|
||||||
'';
|
'';
|
||||||
apply = mesa: mesa.drivers or throw "`mesa` package must have a `drivers` output.";
|
apply = mesa: mesa.drivers or (throw "`mesa` package must have a `drivers` output.");
|
||||||
};
|
};
|
||||||
mesaPackage32 = mkOption {
|
mesaPackage32 = mkOption {
|
||||||
type = types.package;
|
type = types.package;
|
||||||
@@ -110,7 +110,7 @@ in
|
|||||||
Same as {option}`mesaPackage` but for the 32-bit Mesa on 64-bit
|
Same as {option}`mesaPackage` but for the 32-bit Mesa on 64-bit
|
||||||
systems. Used when {option}`driSupport32Bit` is set.
|
systems. Used when {option}`driSupport32Bit` is set.
|
||||||
'';
|
'';
|
||||||
apply = mesa: mesa.drivers or throw "`mesa` package must have a `drivers` output.";
|
apply = mesa: mesa.drivers or (throw "`mesa` package must have a `drivers` output.");
|
||||||
};
|
};
|
||||||
|
|
||||||
extraPackages = mkOption {
|
extraPackages = mkOption {
|
||||||
|
|||||||
Reference in New Issue
Block a user