mirror of
https://github.com/XRPLF/rippled.git
synced 2026-02-25 16:22:34 +00:00
17 lines
383 B
Nix
17 lines
383 B
Nix
{
|
|
description = "Nix related things for xrpld";
|
|
inputs = {
|
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
|
};
|
|
|
|
outputs =
|
|
{ nixpkgs, ... }:
|
|
let
|
|
forEachSystem = (import ./nix/utils.nix { inherit nixpkgs; }).forEachSystem;
|
|
in
|
|
{
|
|
devShells = forEachSystem (import ./nix/devshell.nix);
|
|
formatter = forEachSystem ({ pkgs, ... }: pkgs.nixfmt);
|
|
};
|
|
}
|