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-04-25 12:26:02 +02:00
|
|
|
outputs = { self, nixpkgs, easy-purescript-nix }:
|
2024-01-23 14:44:07 +01:00
|
|
|
let
|
|
|
|
supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ]; # "aarch64-linux" not supported
|
2024-04-25 12:26:02 +02:00
|
|
|
forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
|
|
|
|
pkgs = import nixpkgs { inherit system; };
|
|
|
|
});
|
2024-01-23 14:44:07 +01:00
|
|
|
in
|
|
|
|
{
|
|
|
|
devShells = forEachSupportedSystem ({ pkgs }: {
|
|
|
|
default =
|
|
|
|
let
|
|
|
|
easy-ps = import easy-purescript-nix { inherit pkgs; };
|
|
|
|
in
|
|
|
|
pkgs.mkShell {
|
2024-04-25 12:26:02 +02:00
|
|
|
packages = (with pkgs; [ nodejs ]) ++ (with easy-ps; [
|
|
|
|
purs
|
|
|
|
spago
|
|
|
|
purescript-language-server
|
|
|
|
purs-tidy
|
|
|
|
]);
|
2024-01-23 14:44:07 +01:00
|
|
|
};
|
|
|
|
});
|
|
|
|
};
|
2022-12-21 16:04:57 +01:00
|
|
|
}
|