Init Nix flake and create Nix package

This commit is contained in:
2024-11-15 18:31:32 +01:00
parent 333bbdd26b
commit 485e69eb55
3 changed files with 91 additions and 0 deletions

7
package.nix Normal file
View File

@@ -0,0 +1,7 @@
{buildNpmPackage, ...}:
buildNpmPackage {
pname = "oh-importer";
version = "0.0.1";
src = ./.;
npmDepsHash = "sha256-s6Pt1NgcvzXAIAOEgJlJQitrU9SgbFQjq926LttYmyU=";
}