matrix-media-expanded/flake.nix

72 lines
2.4 KiB
Nix
Raw Normal View History

2021-05-31 23:19:51 +00:00
{
description = "srid/haskell-template: Nix template for Haskell projects";
2021-05-31 23:19:51 +00:00
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
2022-05-26 11:25:38 +00:00
flake-parts.url = "github:hercules-ci/flake-parts";
haskell-flake.url = "github:srid/haskell-flake";
treefmt-flake.url = "github:srid/treefmt-flake";
mission-control.url = "github:Platonic-Systems/mission-control";
2021-05-31 23:19:51 +00:00
};
2022-04-27 22:55:51 +00:00
outputs = inputs@{ self, nixpkgs, flake-parts, ... }:
2022-05-26 11:25:38 +00:00
flake-parts.lib.mkFlake { inherit self; } {
systems = nixpkgs.lib.systems.flakeExposed;
imports = [
inputs.haskell-flake.flakeModule
inputs.treefmt-flake.flakeModule
inputs.mission-control.flakeModule
];
perSystem = { self', lib, config, pkgs, ... }: {
# The "main" project. You can have multiple projects, but this template has only one.
haskellProjects.main = {
packages = {
haskell-template.root = ./.;
};
2022-12-19 13:58:06 +00:00
buildTools = hp: { } // config.treefmt.formatters;
2022-09-14 20:46:58 +00:00
# overrides = self: super: {}
hlsCheck.enable = true;
hlintCheck.enable = true;
};
treefmt.formatters = {
inherit (pkgs)
nixpkgs-fmt;
inherit (pkgs.haskellPackages)
cabal-fmt
fourmolu;
2022-05-26 11:25:38 +00:00
};
mission-control.scripts = {
docs = {
description = "Start Hoogle server for project dependencies";
command = ''
echo http://127.0.0.1:8888
hoogle serve -p 8888 --local
'';
category = "Dev Tools";
};
repl = {
description = "Start the cabal repl";
command = ''
cabal repl "$@"
'';
category = "Dev Tools";
};
fmt = {
2022-12-19 13:58:06 +00:00
description = "Format the source tree";
command = "${lib.getExe pkgs.treefmt}";
category = "Dev Tools ";
};
run = {
description = "Run the project with ghcid auto-recompile";
command = ''
ghcid -c "cabal repl exe:haskell-template" --warnings -T :main
'';
category = "Primary";
};
};
packages.default = self'.packages.main-haskell-template;
devShells.default =
config.mission-control.installToDevShell config.devShells.main;
};
2022-05-26 11:25:38 +00:00
};
2021-05-31 23:19:51 +00:00
}