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

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

16 lines
263 B
Nix
Raw Normal View History

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