-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
default.nix
128 lines (113 loc) · 3.06 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
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" haskellSource { }; };
};
treefmt = super.treefmt.overrideAttrs (old: {
patches = [
# Makes it work in parallel: https://github.com/numtide/treefmt/pull/282
(self.fetchpatch {
url = "https://github.com/numtide/treefmt/commit/f596795cd24b50f048cc395866bb90a89d99152d.patch";
hash = "sha256-EPn+JAT3aZLSWmpdi9ULZ8o8RvrX+UFp0cQWfBcQgVg=";
})
];
});
};
pkgs = import nixpkgs {
inherit system;
overlays = [
overlay
(import (serokell-nix + "/overlay"))
];
config = { };
};
inherit (pkgs) haskell lib;
fs = lib.fileset;
allFiles = fs.gitTracked ./.;
# Used for source-wide checks
source = fs.toSource {
root = ./.;
fileset = allFiles;
};
haskellSource = fs.toSource {
root = ./.;
# Limit to only files needed for the Haskell build
fileset = fs.intersection allFiles (
fs.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;
};
checks = {
inherit build;
hlint = pkgs.build.haskell.hlint haskellSource;
reuse = pkgs.stdenvNoCC.mkDerivation {
name = "nixfmt-reuse";
src = source;
nativeBuildInputs = with pkgs; [ reuse ];
buildPhase = "reuse lint";
installPhase = "touch $out";
};
tests = pkgs.stdenvNoCC.mkDerivation {
name = "nixfmt-tests";
src = fs.toSource {
root = ./.;
fileset = fs.intersection allFiles ./test;
};
nativeBuildInputs = with pkgs; [
shellcheck
build
];
patchPhase = "patchShebangs .";
buildPhase = "./test/test.sh";
installPhase = "touch $out";
};
treefmt = treefmtEval.config.build.check source;
};
in
build
// {
packages.nixfmt = build;
inherit pkgs;
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
];
};
inherit checks;
ci = pkgs.linkFarm "ci" checks;
}