-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
96 lines (86 loc) · 2.34 KB
/
flake.nix
File metadata and controls
96 lines (86 loc) · 2.34 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
{
description = "Kernel";
inputs = {
nixpkgs = {
type = "github";
owner = "NixOs";
repo = "nixpkgs";
ref = "master";
};
flake-utils = {
type = "github";
owner = "numtide";
repo = "flake-utils";
};
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShells =
let
native_build_required = with pkgs; [ gnumake ];
in
rec {
default = kernel;
kernel = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
# building
grub2
libisoburn
nasm
mtools
# QOL
bear
shellcheck
clang-tools
qemu
doxygen
graphviz
] ++ native_build_required;
hardeningDisable = [ "fortify" ];
};
test = pkgs.mkShell rec {
nativeBuildInputs = with pkgs; [
criterion.out
criterion.dev
gcovr
] ++ native_build_required;
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath nativeBuildInputs;
hardeningDisable = [ "fortify" ];
};
# Useful to build our gcc target
gcc = pkgs.mkShell {
hardeningDisable = [ "all" ];
buildInputs = with pkgs; [
# Required executables
gnumake
pkg-config
autoconf-archive
autoconf269 # newlib requires using v2.69 exactly
automake115x
autogen
# Required libraries
gmp.dev
libmpc
mpfr.dev
flex
bison
isl
];
};
newlib = pkgs.mkShell.override { stdenv = pkgs.stdenvNoCC; } {
hardeningDisable = [ "all" ];
buildInputs = with pkgs; [
gnumake
pkg-config
autoconf269 # newlib requires using v2.69 exactly
automake115x
];
};
};
}
);
}