floof/shell.nix

15 lines
327 B
Nix
Raw Normal View History

2022-11-22 15:41:59 +00:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs =
2022-11-25 12:35:06 +00:00
let erlpkgs = pkgs.buildPackages.beam.packages.erlangR25;
2022-11-22 15:41:59 +00:00
in [
erlpkgs.elixir
erlpkgs.hex
];
2022-11-25 12:35:06 +00:00
buildInputs = [
pkgs.libsodium
];
2022-11-22 15:41:59 +00:00
}