Last active
March 16, 2021 17:31
-
-
Save zetashift/0739b4a2ff83f909f23b15137155fc3a to your computer and use it in GitHub Desktop.
Bare minimum Gleam shell.nix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { pkgs ? import <nixpkgs> {} }: | |
| with pkgs; | |
| let inputs = [ | |
| gleam | |
| erlang | |
| rebar3 | |
| ]; | |
| in mkShell { | |
| buildInputs = inputs; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment