nix update

master
Johannes Hendrik Gerard van der Weide 2024-04-09 15:17:41 +02:00
parent 5ea32d5551
commit 3678e8b950
1 changed files with 10 additions and 0 deletions

10
default.nix Normal file
View File

@ -0,0 +1,10 @@
{ pkgs ? import <nixpkgs> { } }:
with pkgs; stdenv.mkDerivation {
name = "website";
src = ./.;
installPhase = ''
mkdir -p $out
cp -r . $out
'';
}