floof/shell.nix
2022-11-22 17:35:08 +01:00

12 lines
301 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs =
let erlpkgs = pkgs.buildPackages.beam.packages.erlangR24;
in [
erlpkgs.elixir
erlpkgs.hex
erlpkgs.rebar3
];
}