diff options
| author | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-10-21 12:17:47 +0000 |
|---|---|---|
| committer | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-11-06 17:20:03 +0000 |
| commit | adb2b16164d0f7b049b97e4ac77ed3b866f56e0c (patch) | |
| tree | 94581bc82127758139319f48ca38b5f5d7fa5644 | |
| parent | 8dafa981b7445bbd76f081eed7fefdee432f380e (diff) | |
| download | focaccia-adb2b16164d0f7b049b97e4ac77ed3b866f56e0c.tar.gz focaccia-adb2b16164d0f7b049b97e4ac77ed3b866f56e0c.zip | |
Add musl-extra target that includes RR
| -rw-r--r-- | flake.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix index 931cba9..a634880 100644 --- a/flake.nix +++ b/flake.nix @@ -366,6 +366,20 @@ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${zydis-shared-object}/lib ''; }; + + musl-extra = pkgs.mkShell { + packages = [ + packages.dev + pkgs.rr + musl-pkgs.gcc + musl-pkgs.pkg-config + ]; + + hardeningDisable = [ "pie" ]; + + env = uvEnv; + shellHook = uvShellHook; + }; }; checks = { |