2022-05-30 15:13:25 -07:00
|
|
|
{
|
|
|
|
description = "Nix-to-EDN converter.";
|
|
|
|
|
2022-05-30 16:08:03 -07:00
|
|
|
inputs = { nixpkgs.url = "nixpkgs/nixos-21.05"; };
|
2022-05-30 15:13:25 -07:00
|
|
|
|
|
|
|
outputs = { self, nixpkgs }: {
|
|
|
|
lib = { toEDN = import ./to-edn.nix { inherit (nixpkgs) lib; }; };
|
|
|
|
};
|
|
|
|
}
|