1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 08:31:16 +02:00

Add missing deps to the dev shell

This commit is contained in:
John Ericson 2024-11-06 16:06:59 -05:00
parent 1af94bf471
commit ba34ea9fe7
3 changed files with 12 additions and 1 deletions

View file

@ -40,6 +40,10 @@ perl.pkgs.toPerlModule (mkMesonDerivation (finalAttrs: {
buildInputs = [
nix-store
] ++ finalAttrs.passthru.externalBuildInputs;
# Hack for sake of the dev shell
passthru.externalBuildInputs = [
bzip2
libsodium
];