forked from NixOS/nixfmt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.nix
86 lines (77 loc) · 1.89 KB
/
default.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
let
sources = import ./npins;
in
{
system ? builtins.currentSystem,
nixpkgs ? sources.nixpkgs,
serokell-nix ? sources.serokell-nix,
}:
let
overlay = self: super: {
haskell = super.haskell // {
packageOverrides = self: super: { nixfmt = self.callCabal2nix "nixfmt" src { }; };
};
};
pkgs = import nixpkgs {
inherit system;
overlays = [
overlay
(import (serokell-nix + "/overlay"))
];
config = { };
};
inherit (pkgs) haskell lib;
src = lib.fileset.toSource {
root = ./.;
fileset = lib.fileset.unions [
./nixfmt.cabal
./src
./main
./LICENSE
];
};
build = lib.pipe pkgs.haskellPackages.nixfmt [
haskell.lib.justStaticExecutables
haskell.lib.dontHaddock
(drv: lib.lazyDerivation { derivation = drv; })
];
treefmtEval = (import sources.treefmt-nix).evalModule pkgs {
# Used to find the project root
projectRootFile = ".git/config";
# This uses the version from Nixpkgs instead of the local one,
# which would require building the package to get a development shell
programs.nixfmt-rfc-style.enable = true;
# We don't want to format the files we use to test the formatter!
settings.formatter.nixfmt-rfc-style.excludes = [ "test/*" ];
# Haskell formatter
programs.fourmolu.enable = true;
};
in
build
// {
packages = {
nixfmt = build;
inherit (pkgs) reuse;
};
shell = pkgs.haskellPackages.shellFor {
packages = p: [ p.nixfmt ];
nativeBuildInputs = with pkgs; [
cabal-install
stylish-haskell
haskellPackages.haskell-language-server
shellcheck
npins
hlint
treefmtEval.config.build.wrapper
];
};
checks = {
hlint = pkgs.build.haskell.hlint src;
treefmt = treefmtEval.config.build.check (
lib.fileset.toSource {
root = ./.;
fileset = lib.fileset.gitTracked ./.;
}
);
};
}