diff options
author | makefu <github@syntax-fehler.de> | 2017-07-23 21:11:11 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-07-23 21:11:11 +0200 |
commit | 1e3931d983127bb2cf5fc93471bacfc9770e5b08 (patch) | |
tree | 9308da0abd27ad72547bc765e9a4100ccc71630b /tv/5pkgs/simple/viljetic-pages | |
parent | fd7d1531acd5345136dad71bdcd1050176d88cd6 (diff) | |
parent | 1bf9e1e1eea95ea9efeb72a48e19a6df11881a7f (diff) |
Merge remote-tracking branch 'lass/master'
Diffstat (limited to 'tv/5pkgs/simple/viljetic-pages')
-rw-r--r-- | tv/5pkgs/simple/viljetic-pages/default.nix | 16 | ||||
-rw-r--r-- | tv/5pkgs/simple/viljetic-pages/index.html | 10 | ||||
-rw-r--r-- | tv/5pkgs/simple/viljetic-pages/logo.xpm | 24 |
3 files changed, 50 insertions, 0 deletions
diff --git a/tv/5pkgs/simple/viljetic-pages/default.nix b/tv/5pkgs/simple/viljetic-pages/default.nix new file mode 100644 index 000000000..1ae55cca7 --- /dev/null +++ b/tv/5pkgs/simple/viljetic-pages/default.nix @@ -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 + ''; +} diff --git a/tv/5pkgs/simple/viljetic-pages/index.html b/tv/5pkgs/simple/viljetic-pages/index.html new file mode 100644 index 000000000..c06b3f97b --- /dev/null +++ b/tv/5pkgs/simple/viljetic-pages/index.html @@ -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 +--> diff --git a/tv/5pkgs/simple/viljetic-pages/logo.xpm b/tv/5pkgs/simple/viljetic-pages/logo.xpm new file mode 100644 index 000000000..bb263dad9 --- /dev/null +++ b/tv/5pkgs/simple/viljetic-pages/logo.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *meh[] = { +/* columns rows colors chars-per-pixel */ +"16 16 2 1 ", +" c black", +". c None", +/* pixels */ +"................", +". ...... .", +". .. ...... .. .", +". .. ...... .. .", +". ...... .", +"................", +". . . .", +". .. . .. . .", +". .. . .. . .", +". . . .", +"................", +"...... . .", +"...... . .", +"...... . .", +"...... . .", +"................" +}; |