-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathflake.nix
29 lines (28 loc) · 893 Bytes
/
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
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
flake-utils.url = "github:numtide/flake-utils";
flake-utils.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { nixpkgs, flake-utils, ... } @ inputs: flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
inherit (pkgs) lib stdenv mkShell;
in {
devShells.default = mkShell {
shellHook = "export DEVSHELL_PS1_PREFIX='Nyaux'";
nativeBuildInputs = with pkgs; [
libisoburn # xorisso
nasm
mtools
curl
gnumake
gdb
clang_19
clang-tools_19
qemu_full
];
};
}
);
}