mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
treewide: disable godot (build failure)
This commit is contained in:
parent
d6709382e7
commit
9eb03ab777
2 changed files with 20 additions and 5 deletions
|
@ -5,6 +5,10 @@
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
disabledDeps = [
|
disabledDeps = [
|
||||||
|
# TODO: 2025-04-20: build failure of godot_4
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/399818
|
||||||
|
# https://github.com/NixOS/nixpkgs/pull/400347
|
||||||
|
"godot"
|
||||||
];
|
];
|
||||||
|
|
||||||
inherit (pkgs.stdenv) hostPlatform;
|
inherit (pkgs.stdenv) hostPlatform;
|
||||||
|
|
|
@ -1,14 +1,25 @@
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
{
|
||||||
empty = {
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
enable =
|
||||||
|
# TODO: 2025-04-20: build failure of godot_4
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/399818
|
||||||
|
# https://github.com/NixOS/nixpkgs/pull/400347
|
||||||
|
false
|
||||||
# Godot is only available on Linux
|
# Godot is only available on Linux
|
||||||
plugins.godot.enable = pkgs.stdenv.isLinux;
|
&& lib.meta.availableOn pkgs.stdenv.hostPlatform pkgs.godot_4;
|
||||||
|
in
|
||||||
|
lib.optionalAttrs enable {
|
||||||
|
empty = {
|
||||||
|
plugins.godot.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
defaults = {
|
defaults = {
|
||||||
plugins.godot = {
|
plugins.godot = {
|
||||||
# Godot is only available on Linux
|
enable = true;
|
||||||
enable = pkgs.stdenv.isLinux;
|
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
executable = "godot";
|
executable = "godot";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue