18 lines
334 B
Nix
18 lines
334 B
Nix
{ pkgs, stdenv, ... }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "viljetic-pages-0";
|
|
phases = [
|
|
"installPhase"
|
|
];
|
|
buildInputs = with pkgs; [
|
|
imagemagick
|
|
];
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp ${./index.html} $out/index.html
|
|
convert ${./logo.xpm} $out/favicon.ico
|
|
convert ${./logo.xpm} $out/favicon2.png
|
|
'';
|
|
}
|