xref: /aosp_15_r20/external/coreboot/util/nixshell/toolchain.nix (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1with import <nixpkgs> {};
2
3stdenvNoCC.mkDerivation {
4	name = "coreboot-toolchain";
5
6	buildInputs = [
7		bison
8		curl
9		flex
10		git
11		gnat12
12		gnumake
13		patch
14		zlib
15	];
16
17	shellHook = ''
18		export SSL_CERT_FILE="/etc/ssl/certs/ca-certificates.crt"
19	'';
20}
21