Created
March 8, 2026 23:57
-
-
Save kittywitch/b15a2273be3da8bab0a0b12f3e7f603b to your computer and use it in GitHub Desktop.
Libreboot lbmk shell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let | |
| nixpkgs = builtins.fetchTarball { | |
| name = "source"; | |
| url = "https://github.com/NixOS/nixpkgs/archive/3e362ce63e16b9572d8c2297c04f7c19ab6725a5.tar.gz"; | |
| sha256 = "sha256:03csxn73wxlqffp3sscjg2mf4a4xl62yawhaxm6dhgwchjnq1nnx"; | |
| }; | |
| pkgs = import nixpkgs {}; | |
| fhsenv = pkgs.buildFHSUserEnv { | |
| name = "lbmk-deps"; | |
| targetPkgs = _: (with pkgs; [ | |
| bashInteractive | |
| gnat | |
| ccache | |
| pkg-config-unwrapped | |
| cmake | |
| autoconf | |
| automake | |
| libtool | |
| bc | |
| m4 | |
| flex | |
| bison | |
| zlib | |
| gettext | |
| ncurses | |
| freetype | |
| p7zip | |
| unzip | |
| innoextract | |
| locale | |
| openssl | |
| gnutls | |
| libuuid | |
| swig | |
| gcc | |
| (pkgs.writeShellScriptBin "c99" '' | |
| gcc -std=c99 "$@" | |
| '') | |
| (python3.withPackages (py: with py; [ | |
| setuptools | |
| ])) | |
| ]); | |
| extraOutputsToInstall = [ "dev" ]; | |
| extraBuildCommands = '' | |
| # grub2 source expects unifont to be in /usr/share/fonts/unifont, but adding unifont | |
| # to targetPkgs above will put it in /usr/share/fonts directly, so symlink it in place | |
| mkdir -p $out/usr/share/fonts | |
| ln -s ${pkgs.unifont}/share/fonts $out/usr/share/fonts/unifont | |
| ''; | |
| runScript = "bash"; | |
| profile = '' | |
| export XBMK_THREADS=`nproc` | |
| export LIBRARY_PATH=/usr/lib | |
| export C_INCLUDE_PATH=/usr/include | |
| export CPLUS_INCLUDE_PATH=/usr/include | |
| ''; | |
| }; | |
| in fhsenv.env |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment