add shell.nix to make development on nix easier

This commit is contained in:
TudbuT 2024-11-03 19:27:11 +01:00 committed by tudbut
parent 2afa62cf3c
commit dc6e8d930b

10
shell.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
elixir
elixir-ls
cmake
file # libmagic
ffmpeg
];
}