Last active
February 11, 2019 20:11
-
-
Save bgamari/9063bbba365099dea2bacce475aab71e to your computer and use it in GitHub Desktop.
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 = import <nixpkgs> { | |
crossSystem = { config = "aarch64-unknown-linux-gnu"; }; | |
}; | |
in | |
nixpkgs.buildEnv { | |
name = "aarch64-cross-compiler"; | |
paths = with nixpkgs; [ gmp ncurses buildPackages.gcc buildPackages.binutils ]; | |
} |
Author
bgamari
commented
Feb 11, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment