to-edn/flake.nix
2022-05-30 15:13:25 -07:00

10 lines
208 B
Nix

{
description = "Nix-to-EDN converter.";
input = { nixpkgs.url = "nixpkgs/nixos-21.05"; };
outputs = { self, nixpkgs }: {
lib = { toEDN = import ./to-edn.nix { inherit (nixpkgs) lib; }; };
};
}