chore: package.nix → default.nix
All checks were successful
build / build (push) Successful in 5s

This commit is contained in:
2026-03-01 12:06:44 -07:00
parent 74e48264ea
commit c45852097b
6 changed files with 13 additions and 7 deletions

View File

@@ -8,7 +8,13 @@
buildNpmPackage {
pname = "doerg-temml-worker";
version = "0.1.0";
src = ./.;
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;