From d4f98e2d1f85fbdffa2470071e22bba2dacc00c0 Mon Sep 17 00:00:00 2001 From: Leo Goetz Date: Fri, 8 May 2026 15:37:39 +0200 Subject: inital commit --- nix/package.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 nix/package.nix (limited to 'nix/package.nix') diff --git a/nix/package.nix b/nix/package.nix new file mode 100644 index 0000000..5cea32e --- /dev/null +++ b/nix/package.nix @@ -0,0 +1,15 @@ +{ buildNpmPackage }: + +buildNpmPackage { + pname = "leogtz-de"; + version = "0.0.1"; + + src = ../.; + + npmDepsHash = "sha256-HuFSExiWfQto3FZhV5/bB4qOGQuNafKFGYSH7UHu0xo="; + + installPhase = '' + mkdir -p $out + cp -r dist/* $out + ''; +} -- cgit v1.3.1