summaryrefslogtreecommitdiffstats
path: root/tv/5pkgs/simple/cr.nix
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2022-03-05 10:03:50 +0100
committertv <tv@krebsco.de>2022-03-05 11:09:30 +0100
commitbf23d7c83bdbe1d0ff99759a754cecfffed8ccd1 (patch)
tree96d156e10721bff533bff77ebdf5018b385682ce /tv/5pkgs/simple/cr.nix
parent49b17ef89e9daf0748fe8b1f544e3c4cad43aa25 (diff)
tv pkgs: move cr to simple
Diffstat (limited to 'tv/5pkgs/simple/cr.nix')
-rw-r--r--tv/5pkgs/simple/cr.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/tv/5pkgs/simple/cr.nix b/tv/5pkgs/simple/cr.nix
new file mode 100644
index 0000000..048d779
--- /dev/null
+++ b/tv/5pkgs/simple/cr.nix
@@ -0,0 +1,16 @@
+{ pkgs }:
+
+pkgs.writeDashBin "cr" ''
+ set -efu
+ if test -n "''${XDG_RUNTIME_DIR-}"; then
+ cache_dir=$XDG_RUNTIME_DIR/chromium-disk-cache
+ else
+ cache_dir=/tmp/chromium-disk-cache_$LOGNAME
+ fi
+ export LC_TIME=de_DE.utf8
+ exec ${pkgs.chromium}/bin/chromium \
+ --ssl-version-min=tls1 \
+ --disk-cache-dir="$cache_dir" \
+ --disk-cache-size=50000000 \
+ "$@"
+''