-
-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathdefault.nix
More file actions
145 lines (128 loc) · 3.55 KB
/
default.nix
File metadata and controls
145 lines (128 loc) · 3.55 KB
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
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
]
);
};
haskellBuildPipeline = [
haskell.lib.justStaticExecutables
haskell.lib.dontHaddock
(drv: lib.lazyDerivation { derivation = drv; })
];
build = lib.pipe pkgs.haskellPackages.nixfmt haskellBuildPipeline;
buildStatic = lib.pipe pkgs.pkgsStatic.haskellPackages.nixfmt haskellBuildPipeline;
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
gitMinimal
];
patchPhase = "patchShebangs .";
buildPhase = ''
export HOME=$(mktemp -d)
export PAGER=cat
git config --global user.name "Test"
git config --global user.email "test@test.com"
git config --global init.defaultBranch main
./test/test.sh
./test/mergetool.sh
'';
installPhase = "touch $out";
};
treefmt = treefmtEval.config.build.check source;
};
in
build
// {
packages = {
nixfmt = build;
nixfmt-static = buildStatic;
};
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;
treefmt = treefmtEval.config.build.wrapper;
}