nix: move shells to dev-shells/ folder

This commit is contained in:
joachimschmidt557 2024-04-21 13:15:23 +02:00
parent 35d066d97d
commit 127acf8702
No known key found for this signature in database
GPG key ID: E0B575BE2884ACC5
11 changed files with 0 additions and 0 deletions

15
dev-shells/zig.nix Normal file
View file

@ -0,0 +1,15 @@
{ pkgs }:
pkgs.mkShell {
buildInputs = with pkgs; [
cmake
ninja
llvmPackages_16.clang-unwrapped
llvmPackages_16.llvm
llvmPackages_16.lld
libxml2
zlib
];
hardeningDisable = [ "all" ];
}