1
1
mirror of https://github.com/divnix/digga.git synced 2024-12-23 16:11:51 +03:00
digga/ufr-polyfills/ufrContract.nix
David Arnold 7587f4700e fmt
2022-02-23 15:23:14 -08:00

12 lines
224 B
Nix

let
eachSystem = import ./eachSystem.nix;
in
supportedSystems:
imprt: inputs:
eachSystem supportedSystems (system:
import imprt {
inherit inputs system; # The super stupid flakes contract `{ inputs, system }`
}
)