-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
78 lines (73 loc) · 2.08 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
{
description = "inflow";
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
outputs = { nixpkgs, ... }:
let
inherit (nixpkgs) lib;
systems = lib.systems.flakeExposed;
eachDefaultSystem = f: builtins.foldl' lib.attrsets.recursiveUpdate { }
(map f systems);
in
eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
python' = pkgs.python3.withPackages (ps: with ps; [
build
keyring-pass
]);
formatters = with pkgs; [ black isort clang-tools nixpkgs-fmt ];
linters = with pkgs; [ nodePackages.pyright clang-tools ruff statix ];
in
{
packages.${system} = {
default = pkgs.inflow.overrideAttrs {
src = ./.;
env.NIX_CFLAGS_COMPILE = "-Werror";
};
python-inflow = (
pkgs.python3Packages.callPackage ./pkgs/python-inflow { }
).overrideAttrs {
src = ./.;
};
};
formatter.${system} = pkgs.writeShellApplication {
name = "formatter";
runtimeInputs = formatters;
text = ''
isort "$@"
black "$@"
nixpkgs-fmt "$@"
clang-format -i inflow.cpp
'';
};
checks.${system}.lint = pkgs.stdenvNoCC.mkDerivation {
name = "lint";
src = ./.;
doCheck = true;
nativeCheckInputs = formatters ++ linters;
checkPhase = ''
isort --check --diff .
black --check --diff .
nixpkgs-fmt --check .
ruff check .
pyright .
clang-tidy inflow.cpp --
statix check
'';
installPhase = "touch $out";
};
devShells.${system}.default = (pkgs.mkShellNoCC.override {
stdenv = pkgs.stdenvNoCC.override {
initialPath = [ pkgs.coreutils ];
};
}) {
packages = [
pkgs.twine
python'
]
++ formatters
++ linters;
};
}
);
}