dev-templates/elm/flake.nix

29 lines
609 B
Nix
Raw Normal View History

2022-07-31 21:10:16 +02:00
{
2022-08-01 00:00:58 +02:00
description = "A Nix-flake-based Elm development environment";
2022-07-31 21:10:16 +02:00
2022-08-20 12:06:53 +02:00
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:NixOS/nixpkgs";
};
2022-07-31 21:10:16 +02:00
outputs =
{ self
, flake-utils
, nixpkgs
}:
2022-07-31 21:10:16 +02:00
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
2022-10-12 23:42:34 +02:00
devShells.default = pkgs.mkShell {
2023-02-15 01:20:41 +01:00
packages = (with pkgs.elmPackages; [ elm ]) ++ (with pkgs; [ elm2nix ]);
2022-07-31 21:10:16 +02:00
shellHook = with pkgs.elmPackages; ''
echo "elm `${elm}/bin/elm --version`"
'';
};
});
2022-07-31 21:10:16 +02:00
}