mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-12-05 03:42:33 +01:00
Compare commits
3 commits
df89a5a7b0
...
ad69e9560b
Author | SHA1 | Date | |
---|---|---|---|
ad69e9560b | |||
70bc8877de | |||
541a490206 |
4 changed files with 12 additions and 6 deletions
|
@ -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}})
|
||||
|
|
|
@ -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})
|
||||
|
||||
|
|
|
@ -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 ];
|
||||
|
|
|
@ -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 => {},
|
||||
|
|
Loading…
Reference in a new issue