File tree Expand file tree Collapse file tree 3 files changed +16
-11
lines changed Expand file tree Collapse file tree 3 files changed +16
-11
lines changed Original file line number Diff line number Diff line change 11{
22 lib ,
3+ stdenv ,
34 callPackage ,
5+ julia ,
46 lazy-nvim-nix ,
57 lazygit ,
68 lazy-nvim ? lazy-nvim-nix . lazy-nvim ,
8890 inherit neovim ;
8991 pluginName = "mason" ;
9092 loadLazyPluginName = "mason.nvim" ;
91- ignoreLines = [
92- "WARNING java: not available"
93- "WARNING javac: not available"
94- "WARNING julia: not available"
95- ] ;
93+ ignoreLines = lib . lists . optional (
94+ ! lib . meta . availableOn stdenv . hostPlatform julia
95+ ) "WARNING julia: not available" ;
9696 } ;
9797
9898 checkhealth-noice = neovim-checkhealth . override {
Original file line number Diff line number Diff line change 11{
2+ lib ,
23 callPackage ,
4+ stdenv ,
35 lazy-nvim-nix ,
6+ julia ,
47} :
58callPackage ./neovim-checkhealth.nix {
69 neovim = lazy-nvim-nix . lazy-nvim . override {
@@ -9,9 +12,7 @@ callPackage ./neovim-checkhealth.nix {
912 } ;
1013 pluginName = "mason" ;
1114 loadLazyPluginName = "mason.nvim" ;
12- ignoreLines = [
13- "WARNING java: not available"
14- "WARNING javac: not available"
15- "WARNING julia: not available"
16- ] ;
15+ ignoreLines = lib . lists . optional (
16+ ! lib . meta . availableOn stdenv . hostPlatform julia
17+ ) "WARNING julia: not available" ;
1718}
Original file line number Diff line number Diff line change 1919 go ,
2020 gzip ,
2121 imagemagick ,
22+ jdk ,
23+ julia ,
2224 lazygit ,
2325 nodePackages ,
2426 nodejs_24 ,
243245 gnutar
244246 go
245247 gzip
248+ jdk
246249 nodePackages . nodejs
247250 php83
248251 php83Packages . composer
251254 unzip
252255 wget
253256 yq-go
254- ] ;
257+ ]
258+ ++ ( lib . lists . optional ( lib . meta . availableOn stdenv . hostPlatform julia ) julia ) ;
255259 } ;
256260
257261 "nvim-treesitter" = plugins . "nvim-treesitter" // {
You can’t perform that action at this time.
0 commit comments