Skip to content

Instantly share code, notes, and snippets.

@zetashift
Last active March 16, 2021 17:31
Show Gist options
  • Select an option

  • Save zetashift/0739b4a2ff83f909f23b15137155fc3a to your computer and use it in GitHub Desktop.

Select an option

Save zetashift/0739b4a2ff83f909f23b15137155fc3a to your computer and use it in GitHub Desktop.
Bare minimum Gleam shell.nix
{ 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