Compare commits
No commits in common. "84c48a566a880c1779272a11b91c03331f4a61fd" and "f14a59bc8d85044388c9af976d7dacee7ba25ff9" have entirely different histories.
84c48a566a
...
f14a59bc8d
1 changed files with 5 additions and 7 deletions
12
flake.nix
12
flake.nix
|
|
@ -8,6 +8,10 @@
|
|||
|
||||
outputs = { self, nixpkgs, rust-overlay }:
|
||||
let
|
||||
rustPkgs = import nixpkgs {
|
||||
inherit (final) system;
|
||||
overlays = [ rust-overlay.overlays.default ];
|
||||
};
|
||||
systems = [ "x86_64-linux" "i686-linux" "aarch64-linux" ];
|
||||
forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system);
|
||||
nixpkgsFor = forAllSystems (system:
|
||||
|
|
@ -18,13 +22,7 @@
|
|||
);
|
||||
in
|
||||
{
|
||||
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
|
||||
{
|
||||
overlay = final: prev: {
|
||||
|
||||
trictrac-front =
|
||||
let
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue