blob: 2349b5cd9e6f98af3905f2d52f6f424cc98a6437 (
plain) (
tree)
|
|
{ pkgs, briefcase, ... }:
pkgs.stdenv.mkDerivation {
name = "wpcarro.dev";
src = ./.;
installPhase = ''
mkdir -p $out
cp $src/index.html $out
mkdir -p $out/goals
cp -r ${briefcase.website.goals}/* $out/goals
'';
}
|