blob: 08b55980e104bf9b58e8278d02503c6931fb727a [file] [log] [blame]
Felix Singer821311e2021-09-14 20:42:34 +02001with import <nixpkgs> {};
2
3stdenvNoCC.mkDerivation {
4 name = "coreboot-toolchain";
5
6 buildInputs = [
7 bison
8 curl
9 flex
10 git
Felix Singer61b90b12022-08-17 17:38:35 +020011 gnat12
Felix Singer821311e2021-09-14 20:42:34 +020012 gnumake
13 patch
14 zlib
15 ];
16
17 shellHook = ''
18 export SSL_CERT_FILE="/etc/ssl/certs/ca-certificates.crt"
19 '';
20}