Skip to content

Instantly share code, notes, and snippets.

@bignaux
Created May 23, 2019 17:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bignaux/93c81660d2c379eef5442f4829c8b461 to your computer and use it in GitHub Desktop.
Save bignaux/93c81660d2c379eef5442f4829c8b461 to your computer and use it in GitHub Desktop.
# TomTom CPU : S3C2412XL-26 ARM926EJ ARM CPU with 8KB I-Cache/8KB DCache/MMU
# nix-shell -I nixpkgs=/home/genesis/devel/nixpkgs
let
self: super: { SDL = super.SDL.override {openglSupport = false;}; };
#moz_overlay = import ();
#nixpkgs = import <nixpkgs> { overlays = [ moz_overlay ]; };
#nixpkgs = import <nixpkgs> { };
in
##arm-unknown-linux-gnueabi
with import <nixpkgs> {
crossSystem = {
config = "armv6l-unknown-linux-gnueabihf";
};
};
mkShell {
# cmake pkgconfig subversion chrpath imagemagick librsvg
nativeBuildInputs = with buildPackages; [ ];
buildInputs = [ SDL ];
#graphicsmagick xsltproc fluid microwindows tslib nix freetype fltk libpng SDL_ttf SDL_image zlib
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment