-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathflake.nix
More file actions
131 lines (121 loc) · 3.36 KB
/
Copy pathflake.nix
File metadata and controls
131 lines (121 loc) · 3.36 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
{
description = "A Nix build Scheduler";
inputs = {
nixpkgs.url = "github:NixOs/nixpkgs/nixos-unstable";
nix = {
url = "github:NixOS/nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{
self,
nixpkgs,
nix,
}:
let
lib = nixpkgs.lib;
forSystem =
f: system:
f {
inherit system;
pkgs = import nixpkgs { inherit system; };
};
supportedSystems = [ "i686-linux" "x86_64-linux" "aarch64-linux" ];
forAllSystems = f: lib.genAttrs supportedSystems (forSystem f);
in
{
devShells = forAllSystems (
{ system, pkgs }:
{
default = pkgs.mkShell {
name = "dev";
inputsFrom = [ self.packages.${system}.evanix ];
packages = with pkgs; [
nixfmt-rfc-style
jq
gdb
ccls
valgrind
clang-tools # clang-format
flamegraph
nix-eval-jobs
linuxKernel.packages.linux_6_6.perf
hyperfine
nix-eval-jobs
pyright
(python3.withPackages (p: [
p.scipy
p.tqdm
p.scikit-learn
]))
];
shellHook = ''
export PS1="\033[0;34m[ ]\033[0m $PS1"
'';
};
}
);
packages = forAllSystems (
{ system, pkgs }:
let
nixPkg = nix.packages.${system}.nix;
in
{
default = self.packages.${system}.evanix;
evanix = pkgs.callPackage ./package.nix { nix = nixPkg; };
evanix-asan = self.packages.${system}.evanix.overrideAttrs (
_: previousAttrs: {
mesonFlags = previousAttrs.mesonFlags ++ [ (lib.mesonOption "b_sanitize" "address") ];
}
);
evanix-py = pkgs.python3Packages.callPackage ./python-package.nix { nix = nixPkg; };
pythonWithEvanix =
let
wrapper = pkgs.python3.withPackages (ps: [
(ps.callPackage ./python-package.nix { nix = nixPkg; })
]);
in
wrapper.overrideAttrs (oldAttrs: {
makeWrapperArgs = oldAttrs.makeWrapperArgs or [ ] ++ [
"--prefix"
"PATH"
":"
"${lib.makeBinPath [ pkgs.nix-eval-jobs ]}"
];
});
}
);
legacyPackages = forAllSystems (
{ pkgs, system, ... }:
let
nixPkg = nix.packages.${system}.nix;
in
{
nixosTests = pkgs.callPackage ./nixos/tests/all-tests.nix { nix = nixPkg; };
doc = {
evanix-nixcon24 = pkgs.callPackage ./doc/evanix-nixcon24/package.nix { };
};
}
);
checks = forAllSystems (
{ system, pkgs, ... }:
let
inherit (pkgs.lib)
filterAttrs
isDerivation
mapAttrs'
nameValuePair
pipe
;
in
pipe self.legacyPackages.${system}.nixosTests [
(filterAttrs (_: p: isDerivation p))
(mapAttrs' (name: nameValuePair "nixosTests-${name}"))
]
// {
inherit (self.packages.${system}) evanix evanix-py;
}
);
};
}