Add git-lfs to the nix development shell

This commit is contained in:
Zahary Karadjov 2024-01-03 18:11:49 +02:00
parent 1befbefe05
commit 63cfebe79f
No known key found for this signature in database
GPG Key ID: C1F42EAFF38D570F

View File

@ -5,6 +5,7 @@ mkShell {
buildInputs = [
figlet
git
git-lfs
gnumake
# For the local simulation
@ -12,6 +13,9 @@ mkShell {
lsof # for killing processes by port
killall # for killing processes manually
curl # for working with the node APIs
python3
mdbook
] ++ lib.optionals (!stdenv.isDarwin) [
lsb-release
];