2019-11-14 21:00:36 +01:00
|
|
|
{ avr ? true, arm ? true, teensy ? true }:
|
2017-09-24 21:34:47 +02:00
|
|
|
|
|
|
|
let
|
2019-11-14 21:00:36 +01:00
|
|
|
overlay = self: super:
|
|
|
|
let addDarwinSupport = pkg: pkg.overrideAttrs (oldAttrs: {
|
|
|
|
meta.platforms = (oldAttrs.meta.platforms or []) ++ self.lib.platforms.darwin;
|
|
|
|
});
|
|
|
|
in {
|
|
|
|
dfu-programmer = addDarwinSupport super.dfu-programmer;
|
|
|
|
teensy-loader-cli = addDarwinSupport super.teensy-loader-cli;
|
|
|
|
|
|
|
|
avrgcc = super.avrgcc.overrideAttrs (oldAttrs: rec {
|
|
|
|
name = "avr-gcc-8.1.0";
|
|
|
|
src = super.fetchurl {
|
|
|
|
url = "mirror://gcc/releases/gcc-8.1.0/gcc-8.1.0.tar.xz";
|
|
|
|
sha256 = "0lxil8x0jjx7zbf90cy1rli650akaa6hpk8wk8s62vk2jbwnc60x";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
};
|
2018-12-20 23:55:13 +01:00
|
|
|
|
2019-11-14 21:00:36 +01:00
|
|
|
nixpkgs = builtins.fetchTarball {
|
|
|
|
url = "https://github.com/NixOS/nixpkgs/archive/0260747427737b980f0.tar.gz";
|
|
|
|
sha256 = "1p2yc6b40xvvxvmlqd9wb440pkrimnlc2wsbpa5rddlpx1dn8qmf";
|
|
|
|
};
|
|
|
|
|
|
|
|
pkgs = import nixpkgs { overlays = [ overlay ]; };
|
|
|
|
in
|
|
|
|
|
|
|
|
with pkgs;
|
|
|
|
let avr_incflags = [
|
2017-09-24 21:34:47 +02:00
|
|
|
"-isystem ${avrlibc}/avr/include"
|
|
|
|
"-B${avrlibc}/avr/lib/avr5"
|
|
|
|
"-L${avrlibc}/avr/lib/avr5"
|
|
|
|
"-B${avrlibc}/avr/lib/avr35"
|
|
|
|
"-L${avrlibc}/avr/lib/avr35"
|
|
|
|
"-B${avrlibc}/avr/lib/avr51"
|
|
|
|
"-L${avrlibc}/avr/lib/avr51"
|
|
|
|
];
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "qmk-firmware";
|
|
|
|
|
2019-09-21 20:59:18 +02:00
|
|
|
buildInputs = [ dfu-programmer dfu-util diffutils git python3 ]
|
2018-07-02 20:39:20 +02:00
|
|
|
++ lib.optional avr [ avrbinutils avrgcc avrlibc avrdude ]
|
2017-11-26 17:07:37 +01:00
|
|
|
++ lib.optional arm [ gcc-arm-embedded ]
|
|
|
|
++ lib.optional teensy [ teensy-loader-cli ];
|
2017-09-24 21:34:47 +02:00
|
|
|
|
|
|
|
CFLAGS = lib.optional avr avr_incflags;
|
|
|
|
ASFLAGS = lib.optional avr avr_incflags;
|
|
|
|
}
|