- Install
dnsmasq
brew install dnsmasq
- Add an address entry to point everything under
.devto127.0.0.1in/usr/local/etc/dnsmasq.conf
echo "address=/.localhost/127.0.0.1" >> "$(brew --prefix)"/etc/dnsmasq.conf
| { | |
| lib, | |
| stdenv, | |
| fetchFromGitHub, | |
| xcbuildHook, | |
| }: | |
| stdenv.mkDerivation rec { | |
| pname = "nuage"; | |
| version = "0.0.9"; |
| ❯ /nix/store/3199ymcckbqln3b3vx4rzlj54why6b8s-q2pro-0-unstable-2025-05-03/bin/q2pro | |
| ------- FS_Init ------- | |
| Current search path: | |
| /Users/carlossless/.q2pro/baseq2/pak3.pkz (118 files) | |
| /Users/carlossless/.q2pro/baseq2/pak2.pak (2 files) | |
| /Users/carlossless/.q2pro/baseq2/pak1.pak (279 files) | |
| /Users/carlossless/.q2pro/baseq2/pak0.pak (1106 files) | |
| /Users/carlossless/.q2pro/baseq2 | |
| /nix/store/3199ymcckbqln3b3vx4rzlj54why6b8s-q2pro-0-unstable-2025-05-03/share/q2pro/baseq2 | |
| 1387 files in PAK files |
| { config, lib, ... }: | |
| let | |
| cfg = config.hardware.raspberry-pi."4".lp5012-leds; | |
| in { | |
| options.hardware = { | |
| raspberry-pi."4".lp5012-leds = { | |
| enable = lib.mkEnableOption '' | |
| support for lp50xx activity leds. | |
| ''; |
| #!/usr/bin/env python3 | |
| from facedancer import main | |
| from facedancer import * | |
| from facedancer.classes import USBDeviceClass | |
| @use_inner_classes_automatically | |
| class Sinolink(USBDevice): | |
| device_class : int = 0xff | |
| device_subclass : int = 0xff |
| Running phase: unpackPhase | |
| unpacking source archive /nix/store/bvzli4m66fv7s3h9yb3ra37r2fbcrdjw-u-boot-2023.07.02.tar.bz2 | |
| source root is u-boot-2023.07.02 | |
| setting SOURCE_DATE_EPOCH to timestamp 1689088844 of file u-boot-2023.07.02/tools/zynqmpimage.h | |
| Running phase: patchPhase | |
| patching script interpreter paths in tools | |
| tools/rmboard.py: interpreter directive changed from "#! /usr/bin/python3" to "/nix/store/qhadfg7ab0rchg2icqy1z0980pmqm8qr-python3-3.11.6-env/bin/python3" | |
| tools/buildman/main.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/qhadfg7ab0rchg2icqy1z0980pmqm8qr-python3-3.11.6-env/bin/python3" | |
| tools/k3_fit_atf.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/8hdfaadlsdrxhzji9wzypadip450mflv-bash-5.2-p15/bin/sh" | |
| tools/rkmux.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/qhadfg7ab0rchg2icqy1z0980pmqm8qr-python3-3.11.6-env/bin/python3" |
| { lib, pkgs, stdenvNoCC, dtc }: | |
| with lib; { | |
| applyOverlays = (base: overlays': stdenvNoCC.mkDerivation { | |
| name = "device-tree-overlays"; | |
| nativeBuildInputs = [ dtc ]; | |
| buildCommand = let | |
| overlays = toList overlays'; | |
| in '' | |
| mkdir -p $out |
| /dts-v1/; | |
| /memreserve/ 0x0000000000000000 0x0000000000001000; | |
| / { | |
| compatible = "raspberrypi,4-model-b\0brcm,bcm2711"; | |
| model = "Raspberry Pi 4 Model B"; | |
| #address-cells = <0x02>; | |
| #size-cells = <0x01>; | |
| interrupt-parent = <0x01>; |
| #!/usr/bin/env bash | |
| FRAMEWORK_BINARIES=$(find . -path "./Carthage/Build/*.framework/*" -type f -maxdepth 5 ! -name "*.*") | |
| check_framework () { | |
| printf "Checking $1..." | |
| if OTOOL_OUTPUT=$(otool -l -arch all "$1" | grep __llvm_prf) ; then | |
| printf " LLVM instrumentation symbols found:\n" | |
| printf "$OTOOL_OUTPUT\n\n" | |
| else |
| import Foundation | |
| var chars = "ABCDEFGHIJKLMNOPQRSTU" | |
| let charStrings = chars.characters | |
| .map{ String($0) } | |
| func buildFunc(charStrings: [String], index: Int) -> String { | |
| let lowerCaseChars = charStrings.map { $0.lowercased() } | |
| let upperCaseChars = charStrings.map { $0.uppercased() } | |