2021-04-10 18:05:16 +02:00
|
|
|
# This overlay is used to make TVL-specific modifications in the
|
|
|
|
# nixpkgs tree, where required.
|
2021-04-14 00:11:02 +02:00
|
|
|
{ depot, ... }:
|
2021-04-10 18:05:16 +02:00
|
|
|
|
|
|
|
self: super: {
|
2021-11-21 22:14:17 +01:00
|
|
|
# Rollback Nix to a stable version (2.3) while there is lots of
|
|
|
|
# random ecosystem breakage with the newer versions.
|
|
|
|
nix = super.nix_2_3;
|
|
|
|
|
2021-04-10 18:05:16 +02:00
|
|
|
# Required for apereo-cas
|
|
|
|
# TODO(lukegb): Document why?
|
2021-11-25 12:17:35 +01:00
|
|
|
gradle_6 = self.callPackage (super.gradleGen {
|
|
|
|
version = "6.5.1";
|
2021-04-10 18:05:16 +02:00
|
|
|
nativeVersion = "0.22-milestone-3";
|
2021-11-25 12:17:35 +01:00
|
|
|
sha256 = "0jmmipjh4fbsn92zpifa5cqg5ws2a4ha0s4jzqhrg4zs542x79sh";
|
|
|
|
}) {
|
|
|
|
java = self.jdk11;
|
2021-04-10 18:05:16 +02:00
|
|
|
};
|
|
|
|
|
2021-05-23 13:33:59 +02:00
|
|
|
clang-tools_11 = self.clang-tools.override {
|
2021-04-10 18:05:16 +02:00
|
|
|
llvmPackages = self.llvmPackages_11;
|
2021-05-23 13:33:59 +02:00
|
|
|
};
|
2021-04-14 00:11:02 +02:00
|
|
|
|
2021-10-07 21:57:09 +02:00
|
|
|
# stdenv which uses clang, lld and libc++; full is a slight exaggeration,
|
|
|
|
# we for example don't use LLVM's libunwind
|
|
|
|
fullLlvm11Stdenv = self.overrideCC self.stdenv
|
|
|
|
(self.llvmPackages_11.libcxxStdenv.cc.override {
|
|
|
|
inherit (self.llvmPackages_11) bintools;
|
|
|
|
});
|
|
|
|
|
2021-04-14 00:11:02 +02:00
|
|
|
# Add our Emacs packages to the fixpoint
|
|
|
|
emacsPackagesFor = emacs: (
|
|
|
|
(super.emacsPackagesFor emacs).overrideScope' (eself: esuper: {
|
|
|
|
tvlPackages = depot.tools.emacs-pkgs // depot.third_party.emacs;
|
2021-09-01 12:14:37 +02:00
|
|
|
|
|
|
|
# Use the notmuch from nixpkgs instead of from the Emacs
|
|
|
|
# overlay, to avoid versions being out of sync.
|
|
|
|
notmuch = super.notmuch.emacs;
|
2021-09-15 21:46:17 +02:00
|
|
|
|
|
|
|
# Build EXWM with the depot sources instead.
|
|
|
|
exwm = esuper.exwm.overrideAttrs(_: {
|
2021-11-25 11:52:56 +01:00
|
|
|
src = depot.path.origSrc + "/third_party/exwm";
|
2021-09-15 21:46:17 +02:00
|
|
|
});
|
2021-04-14 00:11:02 +02:00
|
|
|
})
|
|
|
|
);
|
2021-08-04 16:49:09 +02:00
|
|
|
|
2021-09-01 12:07:11 +02:00
|
|
|
# dottime support for notmuch
|
2021-08-04 16:49:09 +02:00
|
|
|
notmuch = super.notmuch.overrideAttrs(old: {
|
|
|
|
passthru = old.passthru // {
|
2021-09-01 12:07:11 +02:00
|
|
|
patches = old.patches ++ [ ./patches/notmuch-dottime.patch ];
|
2021-08-04 16:49:09 +02:00
|
|
|
};
|
|
|
|
});
|
2021-09-11 15:59:52 +02:00
|
|
|
|
2021-11-21 21:52:03 +01:00
|
|
|
# nix-serve does not work with nix 2.4
|
|
|
|
# https://github.com/edolstra/nix-serve/issues/28
|
|
|
|
nix-serve = super.nix-serve.override { nix = super.nix_2_3; };
|
2021-12-15 13:13:57 +01:00
|
|
|
|
|
|
|
# Avoid builds of mkShell derivations in CI.
|
|
|
|
mkShell = super.lib.makeOverridable(args: (super.mkShell args) // {
|
|
|
|
meta.ci = false;
|
|
|
|
});
|
2021-12-18 14:01:10 +01:00
|
|
|
|
2021-12-18 20:08:11 +01:00
|
|
|
# TODO(tazjin): determine whether this is the cause of my suspend
|
|
|
|
# bugs, and if so, upstream it to nixpkgs.
|
|
|
|
xsecurelock = super.xsecurelock.overrideAttrs(drv: rec {
|
|
|
|
buildInputs = drv.buildInputs ++ [ self.makeWrapper ];
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/libexec/xsecurelock/saver_blank \
|
|
|
|
--prefix PATH : ${self.coreutils}/bin
|
|
|
|
'';
|
|
|
|
});
|
2021-04-10 18:05:16 +02:00
|
|
|
}
|