1
1
mirror of https://github.com/the-nix-way/dev-templates synced 2026-03-30 09:16:07 +02:00
github.com_the-nix-way_dev-.../elm/flake.nix
2026-03-22 15:27:13 -03:00

44 lines
987 B
Nix

{
description = "A Nix-flake-based Elm development environment";
inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1"; # unstable Nixpkgs
outputs =
{ self, ... }@inputs:
let
supportedSystems = [
"x86_64-linux"
"aarch64-linux"
"aarch64-darwin"
];
forEachSupportedSystem =
f:
inputs.nixpkgs.lib.genAttrs supportedSystems (
system:
f {
inherit system;
pkgs = import inputs.nixpkgs { inherit system; };
}
);
in
{
devShells = forEachSupportedSystem (
{ pkgs, system }:
{
default = pkgs.mkShellNoCC {
packages =
with pkgs;
[
elm2nix
self.formatter.${system}
]
++ (with elmPackages; [ elm ]);
};
}
);
formatter = forEachSupportedSystem ({ pkgs, ... }: pkgs.nixfmt);
};
}