29 lines
544 B
Nix
29 lines
544 B
Nix
{
|
|
description = "A Nix-flake-based Gleam development environment";
|
|
|
|
inputs = {
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
nixpkgs.url = "github:NixOS/nixpkgs";
|
|
};
|
|
|
|
outputs =
|
|
{ self
|
|
, flake-utils
|
|
, nixpkgs
|
|
}:
|
|
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let
|
|
pkgs = import nixpkgs { inherit system; };
|
|
in
|
|
{
|
|
devShells.default = pkgs.mkShell {
|
|
packages = with pkgs; [ gleam ];
|
|
|
|
shellHook = ''
|
|
${pkgs.gleam}/bin/gleam --version
|
|
'';
|
|
};
|
|
});
|
|
}
|