mirror of
https://codeberg.org/unspeaker/perch.git
synced 2025-12-06 17:46:42 +01:00
13 lines
483 B
Nix
Executable file
13 lines
483 B
Nix
Executable file
#!/usr/bin/env nix-shell
|
|
{pkgs?import<nixpkgs>{}}:let
|
|
stdenv = pkgs.clang19Stdenv;
|
|
name = "taggart";
|
|
nativeBuildInputs = with pkgs; [ pkg-config libclang ];
|
|
buildInputs = with pkgs; [ libclang ];
|
|
LIBCLANG_PATH = "${pkgs.libclang.lib.outPath}/lib";
|
|
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath (with pkgs; []);
|
|
in pkgs.mkShell.override {
|
|
inherit stdenv;
|
|
} {
|
|
inherit name nativeBuildInputs buildInputs LIBCLANG_PATH LD_LIBRARY_PATH;
|
|
}
|