1
1
mirror of https://github.com/divnix/digga.git synced 2024-12-24 00:21:47 +03:00
digga/ufr-polyfills/ufrContract.nix

12 lines
224 B
Nix
Raw Normal View History

let
eachSystem = import ./eachSystem.nix;
in
supportedSystems:
2021-07-17 00:06:09 +03:00
imprt: inputs:
eachSystem supportedSystems (system:
import imprt {
inherit inputs system; # The super stupid flakes contract `{ inputs, system }`
}
)