os/pkgs/fetch-hostingde-invoices/default.nix

16 lines
263 B
Nix

self: self.deno2nix.mkExecutable {
pname = "fetch-hostingde-invoices";
version = "0.1.0";
src = ./.;
bin = "fetch-hostingde-invoices";
entrypoint = "./main.ts";
lockfile = "./deno.lock";
config = "./deno.json";
allow = {
all = true;
};
}