blob: 1ae55cca712b36db5f286417b0b067f74b2b293b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ 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/favicon2.png
'';
}
|