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 \
|
|
|
|
"$@"
|
|
|
|
'';
|
|
|
|
|
2018-12-29 13:22:24 +00:00
|
|
|
dhcpcd = overrideDerivation super.dhcpcd (old: {
|
|
|
|
configureFlags = old.configureFlags ++ [
|
|
|
|
"--dbdir=/var/lib/dhcpcd"
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
2017-09-19 22:47:37 +00:00
|
|
|
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 "$@"
|
|
|
|
'';
|
|
|
|
|
2017-10-03 17:03:17 +00:00
|
|
|
gnupg = self.gnupg22;
|
2018-10-06 21:48:20 +00:00
|
|
|
|
|
|
|
pass = {
|
|
|
|
"18.03" =
|
|
|
|
self.callPackage ./compat/18.03/pass {
|
|
|
|
pass-otp = self.callPackage ./compat/18.03/pass-otp {};
|
|
|
|
};
|
2019-04-30 19:50:07 +00:00
|
|
|
}.${versions.majorMinor version} or
|
2018-10-06 21:48:20 +00:00
|
|
|
super.pass.withExtensions (ext: [
|
|
|
|
ext.pass-otp
|
|
|
|
]);
|
|
|
|
|
2015-07-16 16:31:34 +00:00
|
|
|
}
|