forked from Epitech/coding-style-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
82 lines (74 loc) · 2.74 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
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
{
description = "Print EPITECH's coding style compliance report";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
vera-fork.url = "github:Epitech/banana-vera";
vera-fork.flake = false;
ruleset.url = "git+ssh://git@github.com/Epitech/banana-coding-style-checker.git";
ruleset.flake = false;
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, vera-fork, ruleset, flake-utils, ... }@inputs:
flake-utils.lib.eachDefaultSystem
(system:
let pkgs = nixpkgs.legacyPackages.${system}; in
rec {
packages = flake-utils.lib.flattenTree rec {
vera = pkgs.stdenv.mkDerivation {
pname = "vera++";
version = "1.3.0";
src = vera-fork;
nativeBuildInputs = [ pkgs.cmake ];
buildInputs = [
pkgs.python3
(pkgs.boost.override { enablePython = true; python = pkgs.python3; })
pkgs.tcl
];
cmakeFlags = [
"-DVERA_LUA=OFF"
"-DVERA_USE_SYSTEM_BOOST=ON"
"-DPANDOC=OFF"
];
};
report = (pkgs.writeShellScriptBin "cs" ''
start_time=$(date +%s)
if [ -z "$1" ]; then
project_dir=$(pwd)
else
project_dir="$1"
fi
echo "Running norm in $project_dir"
report=$(find "$project_dir" \( \
-path "*/.git" -o \
-path "*/.idea" -o \
-path "*/.vscode" -o \
-path "$project_dir/bonus/*" -o \
-path "$project_dir/tests" -o \
-path "/*build/*" \
\) -prune -o -type f -print \
| ${packages.vera}/bin/vera++ \
--profile epitech \
--root ${ruleset}/vera \
--error \
2>&1 \
| sed "s|$project_dir/|./|"
)
count=$(echo "$report" | wc -l)
echo "$report"
echo "Found $count issues"
end_time=$(date +%s)
echo "Ran in $((end_time - start_time))s"
if [ $count -gt 0 ]; then
exit 1
fi
exit 0
'');
default = report;
};
apps.vera.type = "app";
apps.vera.program = "${packages.vera}/bin/vera++";
apps.report.type = "app";
apps.report.program = "${packages.report}/bin/cs";
apps.default = apps.report;
});
}