dev-templates/purescript/flake.nix

36 lines
1,020 B
Nix
Raw Normal View History

2022-12-21 16:04:57 +01:00
{
description = "A Nix-flake-based Purescript development environment";
inputs = {
2023-12-21 19:45:59 +01:00
inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.*.tar.gz";
2022-12-21 16:04:57 +01:00
easy-purescript-nix = {
url = "github:justinwoo/easy-purescript-nix";
flake = false;
};
};
2023-03-06 12:28:29 +01:00
outputs = { self, nixpkgs, easy-purescript-nix }:
2022-12-21 16:04:57 +01:00
let
2023-07-14 02:26:57 +02:00
supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ]; # "aarch64-linux" not supported
forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
pkgs = import nixpkgs { inherit system; };
});
2022-12-21 16:04:57 +01:00
in
{
devShells = forEachSupportedSystem ({ pkgs }: {
default =
let
easy-ps = import easy-purescript-nix { inherit pkgs; };
in
pkgs.mkShell {
packages = (with pkgs; [ nodejs ]) ++ (with easy-ps; [
purs
spago
purescript-language-server
purs-tidy
]);
};
});
};
2022-12-21 16:04:57 +01:00
}