about summary refs log tree commit diff
path: root/users/wpcarro/website/learn/default.nix
blob: 7aa8975a45fae90bd35af60f298447c38bba8efe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ pkgs, ... }:

pkgs.stdenv.mkDerivation {
  name = "learn.wpcarro.dev";
  src = ./static;
  buildPhase = ''
    cp -R $src $out
  '';
  dontInstall = true;
}