Use fromTOML on Nix >= 2.6.0 (#1892)
This commit is contained in:
parent
58758fee61
commit
4eed4c26e9
1 changed files with 4 additions and 2 deletions
|
@ -5,7 +5,9 @@ let
|
||||||
languages-json = runCommand "languages-toml-to-json" { } ''
|
languages-json = runCommand "languages-toml-to-json" { } ''
|
||||||
${yj}/bin/yj -t < ${./languages.toml} > $out
|
${yj}/bin/yj -t < ${./languages.toml} > $out
|
||||||
'';
|
'';
|
||||||
languagesConfig =
|
languagesConfig = if lib.versionAtLeast builtins.nixVersion "2.6.0" then
|
||||||
|
builtins.fromTOML (builtins.readFile ./languages.toml)
|
||||||
|
else
|
||||||
builtins.fromJSON (builtins.readFile (builtins.toPath languages-json));
|
builtins.fromJSON (builtins.readFile (builtins.toPath languages-json));
|
||||||
isGitGrammar = (grammar:
|
isGitGrammar = (grammar:
|
||||||
builtins.hasAttr "source" grammar && builtins.hasAttr "git" grammar.source
|
builtins.hasAttr "source" grammar && builtins.hasAttr "git" grammar.source
|
||||||
|
|
Loading…
Add table
Reference in a new issue