Create Nix flake and app package

This commit is contained in:
2024-11-14 19:07:52 +01:00
parent 2a51b8e732
commit e367daf484
3 changed files with 50 additions and 0 deletions

7
package.nix Normal file
View File

@@ -0,0 +1,7 @@
{buildNpmPackage, ...}:
buildNpmPackage {
pname = "tauron-scrapper";
version = "0.0.1";
src = ./.;
npmDepsHash = "sha256-MNbrgr1/Qg97q479Vn3rc2ITEXntBHBplT0uui9n0YI=";
}