Created
April 30, 2025 17:15
-
-
Save andrewrk/18d9935bcc63bc38d6ac8ddd0135dfc6 to your computer and use it in GitHub Desktop.
my nix-shell environment for zig development. https://github.com/ziglang/zig/wiki/How-to-build-LLVM,-libclang,-and-liblld-from-source#posix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with import <nixpkgs> {}; { | |
tmpAoeu = stdenv.mkDerivation { | |
name = "zig-no-llvm"; | |
hardeningDisable = [ "all" ]; | |
buildInputs = [ | |
cmake | |
ninja | |
]; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment