to-edn/flake.nix

10 lines
208 B
Nix
Raw Normal View History

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