Zpkgs tv viljetic-pages: init at 0
This commit is contained in:
parent
c93c082bda
commit
41051d61fa
|
@ -7,4 +7,5 @@ pkgs //
|
|||
github-hosts-sync = pkgs.callPackage ./github-hosts-sync.nix {};
|
||||
github-known_hosts = pkgs.callPackage ./github-known_hosts.nix {};
|
||||
much = pkgs.callPackage ./much.nix {};
|
||||
viljetic-pages = pkgs.callPackage ./viljetic-pages {};
|
||||
}
|
||||
|
|
16
Zpkgs/tv/viljetic-pages/default.nix
Normal file
16
Zpkgs/tv/viljetic-pages/default.nix
Normal file
|
@ -0,0 +1,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
|
||||
'';
|
||||
}
|
10
Zpkgs/tv/viljetic-pages/index.html
Normal file
10
Zpkgs/tv/viljetic-pages/index.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
<!DOCTYPE HTML>
|
||||
<title>blank page</title>
|
||||
<link rel="shortcut icon" href="favicon2.png" type="image/png">
|
||||
<i>This page intentionally left blank.</i>
|
||||
<!--
|
||||
Ok, it's not blank, here are the cookies (bots welcome):
|
||||
mailto:tomislav@viljetic.de
|
||||
https://github.com/4z3
|
||||
irc://freenode.net/#krebs
|
||||
-->
|
24
Zpkgs/tv/viljetic-pages/logo.xpm
Normal file
24
Zpkgs/tv/viljetic-pages/logo.xpm
Normal file
|
@ -0,0 +1,24 @@
|
|||
/* XPM */
|
||||
static char *meh[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 2 1 ",
|
||||
" c black",
|
||||
". c None",
|
||||
/* pixels */
|
||||
"................",
|
||||
". ...... .",
|
||||
". .. ...... .. .",
|
||||
". .. ...... .. .",
|
||||
". ...... .",
|
||||
"................",
|
||||
". . . .",
|
||||
". .. . .. . .",
|
||||
". .. . .. . .",
|
||||
". . . .",
|
||||
"................",
|
||||
"...... . .",
|
||||
"...... . .",
|
||||
"...... . .",
|
||||
"...... . .",
|
||||
"................"
|
||||
};
|
Loading…
Reference in a new issue