Last active
November 2, 2025 02:56
-
-
Save chrisolsen/dace1979053fb924f47851ad1f064181 to your computer and use it in GitHub Desktop.
Gleam flake.nix file
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
| { | |
| description = "A Gleam project development environment"; | |
| inputs = { | |
| flake-utils.url = "github:numtide/flake-utils"; | |
| nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; | |
| }; | |
| outputs = { self, flake-utils, nixpkgs }: | |
| flake-utils.lib.eachDefaultSystem (system: | |
| let | |
| pkgs = import nixpkgs { inherit system; }; | |
| in | |
| { | |
| devShells = { | |
| default = pkgs.mkShell { | |
| packages = [ | |
| pkgs.gleam | |
| pkgs.erlang | |
| ]; | |
| }; | |
| }; | |
| }); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment