forked from AkkomaGang/akkoma
11 lines
169 B
Nix
11 lines
169 B
Nix
|
{ pkgs ? import <nixpkgs> {} }:
|
||
|
pkgs.mkShell {
|
||
|
nativeBuildInputs = with pkgs.buildPackages; [
|
||
|
elixir
|
||
|
elixir-ls
|
||
|
cmake
|
||
|
file # libmagic
|
||
|
ffmpeg
|
||
|
];
|
||
|
}
|