forked from M-Labs/nix-scripts
stm32: do not use callPackage on something that isn't a derivation
This commit is contained in:
parent
e5d2b8c10f
commit
7b165e3160
|
@ -1,7 +1,7 @@
|
||||||
{ pkgs ? import <nixpkgs> {}, rustManifest ? ./stm32/channel-rust-nightly.toml }:
|
{ pkgs ? import <nixpkgs> {}, rustManifest ? ./stm32/channel-rust-nightly.toml }:
|
||||||
|
|
||||||
let
|
let
|
||||||
jobs = pkgs.callPackage ./stm32/default.nix {
|
jobs = import ./stm32/default.nix {
|
||||||
inherit rustManifest;
|
inherit rustManifest;
|
||||||
mozillaOverlay = import <mozillaOverlay>;
|
mozillaOverlay = import <mozillaOverlay>;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue