nix: add custom mopidy and zig-bootstrap

This commit is contained in:
joachimschmidt557 2022-09-15 21:38:50 +02:00
parent 371e8c5f83
commit 00a9816f49
No known key found for this signature in database
GPG key ID: E0B575BE2884ACC5
2 changed files with 42 additions and 0 deletions

11
nix/zig-bootstrap.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs }:
pkgs.mkShell {
buildInputs = with pkgs; [
cmake
python3
zlib
];
hardeningDisable = [ "all" ];
}