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-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
|
|
|
});
|
2022-02-26 12:35:45 +01:00
|
|
|
|
|
|
|
# Workaround for magit checking the git version at load time
|
|
|
|
magit = esuper.magit.overrideAttrs (_: {
|
|
|
|
propagatedNativeBuildInputs = [
|
|
|
|
self.git
|
|
|
|
];
|
|
|
|
});
|
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.
|
2022-02-02 11:41:48 +01:00
|
|
|
mkShell = super.lib.makeOverridable (args: (super.mkShell args).overrideAttrs (_: {
|
|
|
|
passthru = {
|
|
|
|
meta.ci.skip = true;
|
|
|
|
};
|
|
|
|
}));
|
2022-01-30 17:04:18 +01:00
|
|
|
|
|
|
|
# bump nixpkgs-fmt to a version that doesn't touch whitespace in
|
|
|
|
# strings
|
|
|
|
nixpkgs-fmt = super.nixpkgs-fmt.overrideAttrs (old: rec {
|
|
|
|
src = self.fetchFromGitHub {
|
|
|
|
owner = "nix-community";
|
|
|
|
repo = "nixpkgs-fmt";
|
|
|
|
rev = "5ae8532b82eb040ca6b21ae2d02d9e88f604e76a";
|
|
|
|
sha256 = "0hjkbcgz62793hzfzlaxyah8a2c1k79n1k891lg7kfw8mkbq0w4p";
|
|
|
|
};
|
|
|
|
|
|
|
|
cargoDeps = old.cargoDeps.overrideAttrs (_: {
|
|
|
|
inherit src;
|
|
|
|
outputHash = "10if2lmv8d95j3walq3ggx3y423yfy4yl9vplw3apd0s671bly8b";
|
|
|
|
});
|
|
|
|
});
|
2022-03-30 13:12:39 +02:00
|
|
|
|
|
|
|
# Temporary workaround until the following commit is in channels:
|
|
|
|
# https://github.com/nixos/nixpkgs/commit/5819b99350d7ac6e20f91adce38e7bb22e4d6fc4
|
|
|
|
ocamlPackages = super.ocamlPackages.overrideScope' (oself: osuper: {
|
|
|
|
uutf =
|
|
|
|
let
|
|
|
|
expectedUrls = [
|
|
|
|
"https://erratique.ch/software/uutf/releases/uutf-${osuper.uutf.version}.tbz"
|
|
|
|
];
|
|
|
|
in
|
|
|
|
assert osuper.uutf.src.urls != expectedUrls;
|
|
|
|
osuper.uutf.overrideAttrs (old: {
|
|
|
|
src = self.fetchurl {
|
|
|
|
urls = expectedUrls;
|
|
|
|
sha256 = old.src.outputHash;
|
|
|
|
};
|
|
|
|
});
|
|
|
|
});
|
2021-04-10 18:05:16 +02:00
|
|
|
}
|