Compare commits

...

3 commits

4 changed files with 12 additions and 6 deletions

View file

@ -11,4 +11,7 @@
;; Default to Common Lisp instead of just using generic Lisp
:lisp :commonlisp
;; Roswell scripts
:ros :commonlisp}})
:ros :commonlisp
;; Haxe
:hx :haxe
:hxml :hxml}})

View file

@ -12,7 +12,7 @@
(var parser-config (parsers.get_parser_configs))
(tset parser-config :haxe {:install_info {:url "https://github.com/vantreeseba/tree-sitter-haxe"
:files [:src/parser.c]
:files [:src/parser.c :src/scanner.c]
:branch :main}
:filetype :haxe})

View file

@ -19,7 +19,7 @@ in
hash = "sha256-tIXwOuKAUhtFujChNtDHu8GnO+l+HbXiVZn5Ui7K4UE=";
};
cargoSha256 = "sha256-IDKTztcdBS4pMj/x85sEvvpe68RppnioJssQsRpDpp0=";
cargoHash = "sha256-IDKTztcdBS4pMj/x85sEvvpe68RppnioJssQsRpDpp0=";
nativeBuildInputs = with pkgs; [ pkg-config ];
buildInputs = with pkgs; [ dbus ];
@ -33,7 +33,7 @@ in
hash = "sha256-UHGSctwyDfQfzUwK4+5gSGgx3rKM/ANZ7YwhGkZ9+KY=";
};
cargoSha256 = "sha256-SU3aeX/yYLXsD8ljQ4obAzAesSaxaI6RULfQQNR1bg4=";
cargoHash = "sha256-SU3aeX/yYLXsD8ljQ4obAzAesSaxaI6RULfQQNR1bg4=";
})
(pkgs.rustPlatform.buildRustPackage rec {
name = "nu-plugin-polars";
@ -44,7 +44,7 @@ in
hash = "sha256-G+wjEzUeiJfKfO5KdrnOATqG2MmQxFaDjN7eEPKEmgo=";
};
cargoSha256 = "sha256-LNdfMpAar2OVGlQjTJKfsSC2WuxtIshEMPmHQDjzMYE=";
cargoHash = "sha256-LNdfMpAar2OVGlQjTJKfsSC2WuxtIshEMPmHQDjzMYE=";
doCheck = false; # Needs OpenSSL, which build doesn't for some reason.
})
@ -57,7 +57,7 @@ in
hash = "sha256-APZC+sna64ptfxIcvXWto456Z7xuIxmzvxfCK1EbW+c=";
};
cargoSha256 = "sha256-5LACp9sF/Qc/1ORCXq34NTMZaMBThkvKsnTjR2+zCt0=";
cargoHash = "sha256-5LACp9sF/Qc/1ORCXq34NTMZaMBThkvKsnTjR2+zCt0=";
nativeBuildInputs = with pkgs; [ pkg-config ];
buildInputs = with pkgs; [ openssl ];

View file

@ -67,6 +67,9 @@ fn findVideoFile(alloc: std.mem.Allocator, out_buf: []u8) ![]const u8 {
while (try iter.next()) |entry| {
switch (entry.kind) {
.file => {
if (std.mem.endsWith(u8, entry.name, ".live_chat.json"))
continue;
try files.append(try fname_arena.allocator().dupe(u8, entry.name));
},
else => {},