tvl-depot/users/wpcarro/website/learn/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
159 B
Nix
Raw Normal View History

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