-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflake.nix
48 lines (43 loc) · 1.5 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
description = "gtf.io website";
inputs = {
flake-parts.url = "github:hercules-ci/flake-parts";
haskell-flake.url = "github:srid/haskell-flake";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
};
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
inputs.haskell-flake.flakeModule
inputs.pre-commit-hooks.flakeModule
];
systems = [ "x86_64-linux" "aarch64-linux" ];
perSystem = { config, inputs', self', pkgs, ... }: {
haskellProjects.default = {
basePackages = pkgs.haskell.packages.ghc948;
devShell.mkShellArgs.shellHook = config.pre-commit.installationScript;
devShell.mkShellArgs.nativeBuildInputs = with pkgs; [ alejandra nil ghciwatch ];
defaults.devShell.tools = hp: with hp; {
inherit
cabal-install
haskell-language-server;
};
packages = {
djot.source = inputs'.nixpkgs.legacyPackages.fetchFromGitHub {
owner = "gfarrell";
repo = "djoths";
rev = "bad299275d650e71b7915ae6da4cfef6a869ab1a";
hash = "sha256-Ud+BhyifBnvQK7gPK5ruT3GHfIrZFSCVXmUjB7HhnNw=";
};
};
};
pre-commit.settings.hooks = {
cabal-fmt.enable = true;
hlint.enable = true;
nixpkgs-fmt.enable = true;
fourmolu.enable = true;
};
packages.default = self'.packages.gtf-website;
};
};
}