stockholm/tv/5pkgs/default.nix

37 lines
785 B
Nix
Raw Normal View History

2016-10-20 18:54:38 +00:00
with import <stockholm/lib>;
2017-07-01 22:09:16 +00:00
2017-07-23 00:46:44 +00:00
self: super:
2017-07-01 22:09:16 +00:00
2017-07-23 00:46:44 +00:00
# Import files and subdirectories like they are overlays.
foldl' mergeAttrs {}
(map
(name: import (./. + "/${name}") self super)
(filter
(name: name != "default.nix" && !hasPrefix "." name)
(attrNames (readDir ./.))))
2017-07-01 22:09:16 +00:00
2017-07-23 00:46:44 +00:00
//
{
2017-07-01 22:09:16 +00:00
# TODO use XDG_RUNTIME_DIR?
cr = self.writeDashBin "cr" ''
set -efu
export LC_TIME=de_DE.utf8
exec ${self.chromium}/bin/chromium \
--ssl-version-min=tls1 \
--disk-cache-dir=/tmp/chromium-disk-cache_"$LOGNAME" \
--disk-cache-size=50000000 \
"$@"
'';
gitAndTools = super.gitAndTools // {
inherit (self) diff-so-fancy;
};
2017-07-01 22:09:16 +00:00
ff = self.writeDashBin "ff" ''
exec ${self.firefoxWrapper}/bin/firefox "$@"
'';
gnupg = self.gnupg22;
2015-07-16 16:31:34 +00:00
}