Add Nix package file
This commit is contained in:
parent
aa5c6c8557
commit
fafb3b8a5b
1 changed files with 15 additions and 0 deletions
15
package.nix
Normal file
15
package.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
{ pkgs, stdenv }:
|
||||||
|
|
||||||
|
with pkgs;
|
||||||
|
with stdenv;
|
||||||
|
|
||||||
|
mkDerivation {
|
||||||
|
pname = "personal-site";
|
||||||
|
version = "2026-04-29";
|
||||||
|
|
||||||
|
phases = [ "installPhase" ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
cp -r /build/source/* $out/
|
||||||
|
'';
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue