dev-templates/purescript/flake.nix

45 lines
1.1 KiB
Nix
Raw Normal View History

2022-12-21 16:04:57 +01:00
{
description = "A Nix-flake-based Purescript development environment";
inputs = {
2024-01-18 13:42:47 +01:00
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
2024-01-23 14:44:07 +01:00
outputs =
{ self
, nixpkgs
, easy-purescript-nix
,
}:
let
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; };
});
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
}