mirror of
https://github.com/XRPLF/rippled.git
synced 2026-03-15 09:12:25 +00:00
20 lines
327 B
Nix
20 lines
327 B
Nix
{ nixpkgs }:
|
|
{
|
|
forEachSystem =
|
|
function:
|
|
nixpkgs.lib.genAttrs
|
|
[
|
|
"x86_64-linux"
|
|
"aarch64-linux"
|
|
"x86_64-darwin"
|
|
"aarch64-darwin"
|
|
]
|
|
(
|
|
system:
|
|
function {
|
|
inherit system;
|
|
pkgs = import nixpkgs { inherit system; };
|
|
}
|
|
);
|
|
}
|