stockholm/tv/5pkgs/default.nix

48 lines
1.0 KiB
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
cr = self.writeDashBin "cr" ''
set -efu
2021-01-24 00:24:19 +00:00
if test -n "''${XDG_RUNTIME_DIR-}"; then
cache_dir=$XDG_RUNTIME_DIR/chromium-disk-cache
else
cache_dir=/tmp/chromium-disk-cache_$LOGNAME
fi
2017-07-01 22:09:16 +00:00
export LC_TIME=de_DE.utf8
exec ${self.chromium}/bin/chromium \
--ssl-version-min=tls1 \
2021-01-24 00:24:19 +00:00
--disk-cache-dir="$cache_dir" \
2017-07-01 22:09:16 +00:00
--disk-cache-size=50000000 \
"$@"
'';
2018-12-29 13:22:24 +00:00
dhcpcd = overrideDerivation super.dhcpcd (old: {
configureFlags = old.configureFlags ++ [
"--dbdir=/var/lib/dhcpcd"
];
});
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;
2018-10-06 21:48:20 +00:00
2015-07-16 16:31:34 +00:00
}