to-edn/flake.nix

10 lines
209 B
Nix
Raw Permalink Normal View History

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; }; };
};
}