blob: 83bb5a18c3e5b76fa873b65053df214dfe989e26 (
plain) (
blame)
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
|
{
description = "Focaccia: A Symbolic Tester for QEMU";
inputs = {
self.submodules = true;
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs-qemu-60.url = "github:nixos/nixpkgs/f8f124009497b3f9908f395d2533a990feee1de8";
flake-utils.url = "github:numtide/flake-utils";
pyproject-nix = {
url = "github:pyproject-nix/pyproject.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
uv2nix = {
url = "github:pyproject-nix/uv2nix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.pyproject-nix.follows = "pyproject-nix";
};
pyproject-build-systems = {
url = "github:pyproject-nix/build-system-pkgs";
inputs.uv2nix.follows = "uv2nix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.pyproject-nix.follows = "pyproject-nix";
};
};
outputs = inputs@{
self,
uv2nix,
nixpkgs,
flake-utils,
pyproject-nix,
pyproject-build-systems,
...
}:
flake-utils.lib.eachSystem [ "x86_64-linux" "aarch64-linux" ] (system:
let
qemu-60 = inputs.nixpkgs-qemu-60.qemu;
# Refine nixpkgs used in flake to system arch
pkgs = import nixpkgs {
inherit system;
};
musl-pkgs = import nixpkgs {
inherit system;
crossSystem = {
config = "x86_64-unknown-linux-musl";
};
};
# Pin Python version
python = pkgs.python312;
# Define workspace root and load uv workspace metadata
workspace = uv2nix.lib.workspace.loadWorkspace { workspaceRoot = ./.; };
# Create an overlay for Nix that includes extracted Python packages declared as dependencies
# in uv
overlay = workspace.mkPyprojectOverlay { sourcePreference = "wheel"; };
editableOverlay = workspace.mkEditablePyprojectOverlay {
# Use environment variable
root = "$REPO_ROOT";
members = [ "focaccia" "miasm" ];
};
# Another overlay layer for flake-specific overloads
# This might be needed because uv does not have sufficient metadata
# Here, uv does include metadata about build systems used by each dependency
# Ergo we need to add a nativeBuildInput to miasm because it depends on setuptools for its
# installation
pyprojectOverrides = self: super: {
miasm = super.miasm.overrideAttrs (old: {
nativeBuildInputs = (old.nativeBuildInputs or []) ++ [ self.setuptools ];
});
cpuid = super.cpuid.overrideAttrs (old: {
nativeBuildInputs = (old.nativeBuildInputs or []) ++ [ self.setuptools ];
});
focaccia = super.focaccia.overrideAttrs (old: {
buildInputs = (old.buildInputs or []) ++ [ pkgs.lldb ];
postInstall = (old.postInstall or "") + ''
set -eu
target="$out/${python.sitePackages}"
src="$(${pkgs.lldb}/bin/lldb -P)"
mkdir -p "$target"
# Copy the lldb Python package (and the native extension)
if [ -d "$src/lldb" ]; then
ln -sTf "$src/lldb" "$target/lldb"
fi
# Optional: some builds ship a top-level helper
if [ -f "$src/LLDB.py" ]; then
cp -a "$src/LLDB.py" "$target/"
fi
'';
});
};
pyprojectOverridesEditable = self: super: {
miasm = super.miasm.overrideAttrs (old: {
nativeBuildInputs = (old.nativeBuildInputs or []) ++ [ self.setuptools ];
src = pkgs.lib.fileset.toSource {
root = old.src;
fileset = pkgs.lib.fileset.unions [
(old.src + "/pyproject.toml")
(old.src + "/README.md")
(old.src + "/miasm/__init__.py")
];
};
});
cpuid = super.cpuid.overrideAttrs (old: {
nativeBuildInputs = (old.nativeBuildInputs or []) ++ [ self.setuptools ];
});
focaccia = super.focaccia.overrideAttrs (old: {
nativeBuildInputs = (old.nativeBuildInputs or []) ++
[ pkgs.lldb ] ++
self.resolveBuildSystem { editables = []; };
src = pkgs.lib.fileset.toSource {
root = old.src;
fileset = pkgs.lib.fileset.unions [
(old.src + "/pyproject.toml")
(old.src + "/README.md")
(old.src + "/src/focaccia/__init__.py")
];
};
postInstall = (old.postInstall or "") + ''
set -eu
target="$out/${python.sitePackages}"
src="$(${pkgs.lldb}/bin/lldb -P)"
mkdir -p "$target"
# Copy the lldb Python package (and the native extension)
if [ -h "$src/lldb" ]; then
ln -sT "$src/lldb" "$target/lldb"
fi
# Optional: some builds ship a top-level helper
if [ -f "$src/LLDB.py" ]; then
cp -a "$src/LLDB.py" "$target/"
fi
'';
});
};
# Build a set of Python packages
# The call to callPackage here uses the base package set from pyproject.nix
# We inherit the Python version to ensure that the packages have the same version
#
# The overrideScope here customizes the Python package set with an overlay defined by the
# composition of three overlay functions
pythonSet = (pkgs.callPackage pyproject-nix.build.packages { inherit python; }).
overrideScope (pkgs.lib.composeManyExtensions [
pyproject-build-systems.overlays.default
overlay
pyprojectOverrides
]);
pythonSetEditable = pythonSet.overrideScope (
pkgs.lib.composeManyExtensions [
editableOverlay
pyprojectOverridesEditable
]
);
# Create a Python venv with the default dependency group
pythonEnv = pythonSet.mkVirtualEnv "focaccia-env" workspace.deps.default;
# Create a Python venv with the default dependency group
pythonDevEnv = pythonSetEditable.mkVirtualEnv "focaccia-env" workspace.deps.all;
uvEnv = {
UV_NO_SYNC = "1";
UV_PYTHON = python.interpreter;
UV_PYTHON_DOWNLOADS = "never";
};
uvShellHook = ''
unset PYTHONPATH
export REPO_ROOT=$(git rev-parse --show-toplevel)
'';
gdbInternal = pkgs.gdb.override { python3 = python; };
in rec {
# Default package just builds Focaccia
packages = rec {
focaccia = pythonEnv.overrideAttrs (old: {
propagatedBuildInputs = (old.propagatedBuildInputs or []) ++ [ pkgs.lldb ];
});
dev = pythonDevEnv.overrideAttrs (old: {
propagatedBuildInputs = (old.propagatedBuildInputs or []) ++ [
pkgs.uv
pkgs.lldb
gdbInternal # TODO keep this internal somehow
];
});
default = focaccia;
};
# Default app is just Focaccia
apps = {
default = {
type = "app";
program = "${packages.focaccia}/bin/focaccia";
};
convert-log = {
type = "app";
program = "${packages.focaccia}/bin/convert";
};
capture-transforms = {
type = "app";
program = "${packages.focaccia}/bin/capture-transforms";
};
validate-qemu = {
type = "app";
# program = "${packages.focaccia}/bin/validate-qemu";
program = let
wrapper = pkgs.writeShellScriptBin "validate-qemu" ''
exec ${packages.focaccia}/bin/validate-qemu --gdb "${gdbInternal}/bin/gdb" "$@"
'';
in "${wrapper}/bin/validate-qemu";
};
# Useful for synchronize the uv lockfile
uv-sync = {
type = "app";
program = "${pkgs.writeShellScriptBin "uv-sync" ''
set -euo pipefail
exec ${pkgs.uv}/bin/uv sync
''}/bin/uv-sync";
};
};
# Developer shell that includes Focaccia and QEMU
devShells = {
default = pkgs.mkShell {
packages = [ packages.dev ];
env = uvEnv;
shellHook = uvShellHook;
};
glibc = pkgs.mkShell {
packages = [
packages.dev
pkgs.gcc
pkgs.glibc.all
];
env = uvEnv;
shellHook = uvShellHook;
};
musl = pkgs.mkShell {
packages = [
packages.dev
musl-pkgs.gcc
musl-pkgs.pkg-config
];
env = uvEnv;
shellHook = uvShellHook;
};
};
});
}
|