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: {
|
|
|
|
# Required for apereo-cas
|
|
|
|
# TODO(lukegb): Document why?
|
|
|
|
gradle_6 = (super.gradleGen.override {
|
|
|
|
java = self.jdk11;
|
|
|
|
jdk = self.jdk11;
|
|
|
|
}).gradleGen rec {
|
|
|
|
name = "gradle-6.5.1";
|
|
|
|
nativeVersion = "0.22-milestone-3";
|
|
|
|
|
|
|
|
src = builtins.fetchurl {
|
|
|
|
url = "https://services.gradle.org/distributions/${name}-bin.zip";
|
|
|
|
sha256 = "0jmmipjh4fbsn92zpifa5cqg5ws2a4ha0s4jzqhrg4zs542x79sh";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
|
|
|
# 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-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
|
|
|
|
|
|
|
# Use latest SBCL, nixpkgs hasn't upgraded yet
|
|
|
|
sbcl = self.sbcl_2_1_8;
|
2021-04-10 18:05:16 +02:00
|
|
|
}
|