This repository has been archived on 2024-07-25. You can view files and clone it, but cannot push or open issues or pull requests.
yandexgpt_tg_bot/bot.nix

12 lines
217 B
Nix

{ pkgs ? import <nixpkgs> { } }:
pkgs.buildNpmPackage {
pname = "yandexgpt_tg_bot";
version = "0.1.0";
src = ./.;
npmDepsHash = "sha256-Vk4VmzFZwRATTQiwnqK6CvBt9itH84F5fToPQta53UY=";
dontBuild = true;
}