Compare commits

..

No commits in common. "84c48a566a880c1779272a11b91c03331f4a61fd" and "f14a59bc8d85044388c9af976d7dacee7ba25ff9" have entirely different histories.

View file

@ -8,6 +8,10 @@
outputs = { self, nixpkgs, rust-overlay }: outputs = { self, nixpkgs, rust-overlay }:
let let
rustPkgs = import nixpkgs {
inherit (final) system;
overlays = [ rust-overlay.overlays.default ];
};
systems = [ "x86_64-linux" "i686-linux" "aarch64-linux" ]; systems = [ "x86_64-linux" "i686-linux" "aarch64-linux" ];
forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system); forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system);
nixpkgsFor = forAllSystems (system: nixpkgsFor = forAllSystems (system:
@ -18,13 +22,7 @@
); );
in in
{ {
overlay = final: prev: overlay = final: prev: {
let
# Extend final privately with rust-overlay to get rust-bin for the WASM
# toolchain without exposing rust-overlay attributes to consumers.
rustPkgs = final.extend rust-overlay.overlays.default;
in
{
trictrac-front = trictrac-front =
let let