gleam-test-server/flake.nix
Nate Anderson ba3696e207
Some checks failed
test / test (push) Has been cancelled
First commit
2026-01-23 13:48:04 -07:00

29 lines
649 B
Nix

{
description = "Paper-Boi - Local journalism automation tool";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
erlang_28
beamMinimal28Packages.rebar3
gleam
];
shellHook = ''
echo "Gleam: $(gleam --version)"
'';
};
}
);
}