diff options
author | lassulus <lassulus@lassul.us> | 2017-07-23 10:22:35 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2017-07-23 10:22:35 +0200 |
commit | 65c2680f24b3200d78e4c2d23da832dde141bfe5 (patch) | |
tree | 3d6854a87da32fb573cfc3faf012808cddc8ef3c /tv/5pkgs/simple/viljetic-pages | |
parent | 241b943c3216073023b312b1a1297dc66dceb7af (diff) | |
parent | ccc7601a0e95d8adccf3a4a7db837aa9f1b3b3a6 (diff) |
Merge remote-tracking branch 'ni/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 */ +"................", +". ...... .", +". .. ...... .. .", +". .. ...... .. .", +". ...... .", +"................", +". . . .", +". .. . .. . .", +". .. . .. . .", +". . . .", +"................", +"...... . .", +"...... . .", +"...... . .", +"...... . .", +"................" +}; |