dizzle: use procmacro in examples

This commit is contained in:
facile pop culture reference 2026-07-25 07:13:28 +03:00
parent 7a0459756e
commit be98e666f5
7 changed files with 53 additions and 61 deletions

View file

@ -1,13 +1,14 @@
#!/usr/bin/env nix-shell
{pkgs?import<nixpkgs>{}}:let
name = "tengri";
stdenv = pkgs.clang19Stdenv;
LIBCLANG_PATH = "${pkgs.libclang.lib.outPath}/lib";
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [];
name = "tengri";
stdenv = pkgs.clang19Stdenv;
in pkgs.mkShell.override {
inherit stdenv;
} {
inherit name LIBCLANG_PATH LD_LIBRARY_PATH;
LIBCLANG_PATH = "${pkgs.libclang.lib.outPath}/lib";
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [
pkgs.pipewire.jack
];
buildInputs = [
pkgs.libclang
pkgs.jack2