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

13 lines
217 B
Nix
Raw Normal View History

2023-06-28 14:45:04 +03:00
{ pkgs ? import <nixpkgs> { } }:
pkgs.buildNpmPackage {
pname = "yandexgpt_tg_bot";
version = "0.1.0";
src = ./.;
2023-07-01 00:52:46 +03:00
npmDepsHash = "sha256-Vk4VmzFZwRATTQiwnqK6CvBt9itH84F5fToPQta53UY=";
2023-06-28 14:45:04 +03:00
dontBuild = true;
}