Skip to content
Snippets Groups Projects
Select Git revision
  • d0a9a7219d0a7f1aa6b7f4e38c0f6f7a77d46a5b
  • main default protected
  • phhw
  • captouch-threshold
  • t
  • dos
  • test2
  • test
  • slewtest
  • simtest
  • view-think
  • vm-pending
  • media-buf
  • scope
  • passthrough
  • wave
  • vsync
  • dos-main-patch-50543
  • json-error
  • rahix/big-flow3r
  • pippin/media_framework
  • v1.3.0
  • v1.2.0
  • v1.2.0+rc1
  • v1.1.1
  • v1.1.0
  • v1.1.0+rc1
  • v1.0.0
  • v1.0.0+rc6
  • v1.0.0+rc5
  • v1.0.0+rc4
  • v1.0.0+rc3
  • v1.0.0+rc2
  • v1.0.0+rc1
34 results

__init__.py

Blame
  • Forked from flow3r / flow3r firmware
    Source project has a limited visibility.
    shell.nix 401 B
    { pkgs ? import <nixpkgs> {} }:
    
    with pkgs;
    with import ./default.nix;
    
    stdenv.mkDerivation {
      name = "env";
      buildInputs = [
        gdb
        glibc_multi
        rust
        pkgsCross.arm-embedded.stdenv.cc
        openocd
      ];
    
      # Set Environment Variables
      RUST_BACKTRACE = 1;
    
      shellHook = ''
        export LIBCLANG_PATH=${llvmPackages.libclang}/lib
        echo "Run 'cd example && cargo build --release'"
      '';
    }