refactor: doerg는 publisher와 결합
Some checks failed
build / build (push) Failing after 36s

This commit is contained in:
2026-04-03 11:20:36 -06:00
parent 5ca59fdb5e
commit 6e9531f944
76 changed files with 912 additions and 325 deletions

View File

@@ -0,0 +1,22 @@
{ buildNpmPackage
, importNpmLock
, makeWrapper
, ibm-plex
, callPackage
}:
buildNpmPackage {
pname = "doerg-temml-worker";
version = "0.1.0";
src =
builtins.filterSource
(name: _file-type: ! builtins.elem name [
"deserialise.clj" "deps.edn" "default.nix"
"README.org" "serialise.clj" "node_modules"
])
./.;
npmDeps = importNpmLock { npmRoot = ./.; };
npmConfigHook = importNpmLock.npmConfigHook;
dontNpmBuild = true;
meta.mainProgram = "doerg-temml-worker";
}