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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
294 B
Nix
Raw Normal View History

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