summaryrefslogtreecommitdiffstats
path: root/util/nixshell/toolchain.nix
blob: 08b55980e104bf9b58e8278d02503c6931fb727a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
with import <nixpkgs> {};

stdenvNoCC.mkDerivation {
	name = "coreboot-toolchain";

	buildInputs = [
		bison
		curl
		flex
		git
		gnat12
		gnumake
		patch
		zlib
	];

	shellHook = ''
		export SSL_CERT_FILE="/etc/ssl/certs/ca-certificates.crt"
	'';
}