2021-04-10 18:05:16 +02:00
|
|
|
# This overlay is used to make TVL-specific modifications in the
|
|
|
|
# nixpkgs tree, where required.
|
2022-11-10 14:18:59 +01:00
|
|
|
{ depot, localSystem, ... }:
|
2021-04-10 18:05:16 +02:00
|
|
|
|
2022-04-21 14:08:12 +02:00
|
|
|
self: super:
|
|
|
|
let
|
|
|
|
# Rollback Nix to a stable version (2.3) with backports for
|
|
|
|
# build-user problems applied.
|
2022-07-02 11:18:50 +02:00
|
|
|
nixSrc =
|
|
|
|
let
|
2022-05-09 15:55:23 +02:00
|
|
|
# branch 2.3-backport-await-users
|
2022-09-28 10:22:58 +02:00
|
|
|
rev = "46a91f2abaee85135cbb447c13957d3c5e9091a9";
|
2022-07-02 11:18:50 +02:00
|
|
|
in
|
|
|
|
self.fetchFromGitHub
|
|
|
|
{
|
|
|
|
owner = "tvlfyi";
|
|
|
|
repo = "nix";
|
|
|
|
inherit rev;
|
2022-09-26 19:33:05 +02:00
|
|
|
hash = "sha256:0rwyrh471c5y64axyd8vzzzmzlscg97fsrjbgbm1a93wnzxcvnvk";
|
2022-07-02 11:18:50 +02:00
|
|
|
} // { revCount = 0; shortRev = builtins.substring 0 7 rev; };
|
2022-11-10 14:41:46 +01:00
|
|
|
|
|
|
|
nixTarball = (scopedImport
|
|
|
|
{
|
|
|
|
# The tarball job always uses currentSystem which we need to purify
|
|
|
|
builtins = builtins // { currentSystem = localSystem; };
|
|
|
|
}
|
|
|
|
"${nixSrc}/release.nix"
|
|
|
|
{
|
|
|
|
nix = nixSrc;
|
|
|
|
nixpkgs = self.path;
|
|
|
|
systems = [ ];
|
|
|
|
}
|
|
|
|
).tarball;
|
2022-04-21 14:08:12 +02:00
|
|
|
in
|
2022-04-21 14:14:37 +02:00
|
|
|
depot.nix.readTree.drvTargets {
|
2022-11-10 14:41:46 +01:00
|
|
|
nix_2_3 = super.nix_2_3.overrideAttrs (_: {
|
|
|
|
src = "${nixTarball}/tarballs/nix-${nixTarball.version}.tar.xz";
|
|
|
|
});
|
|
|
|
nix = self.nix_2_3;
|
2022-10-19 16:22:38 +02:00
|
|
|
nix_latest = super.nix;
|
|
|
|
|
2022-11-03 16:32:32 +01:00
|
|
|
nvd = super.nvd.overrideAttrs (old: {
|
|
|
|
patches = old.patches or [ ] ++ [
|
|
|
|
./patches/nvd-nix-2.3.patch
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
2022-10-26 15:39:00 +02:00
|
|
|
home-manager = super.home-manager.overrideAttrs (_: {
|
|
|
|
src = depot.third_party.sources.home-manager;
|
|
|
|
version = "git-"
|
|
|
|
+ builtins.substring 0 7 depot.third_party.sources.home-manager.rev;
|
|
|
|
});
|
|
|
|
|
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
|
|
|
|
2022-11-26 17:33:40 +01:00
|
|
|
# `Call $methodName --bytes-as-base64` support for evans
|
|
|
|
evans = super.evans.overrideAttrs (old: {
|
|
|
|
patches = old.patches or [ ] ++ [
|
|
|
|
./patches/evans-add-support-for-bytes-as-base64.patch
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
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-12-16 14:13:53 +01:00
|
|
|
|
|
|
|
# Pin a newer version of crate2nix from git, which is not officially
|
|
|
|
# released but supports `dep:`
|
|
|
|
crate2nix = super.crate2nix.overrideAttrs (old: rec {
|
|
|
|
version = "0.11.0-rc.1";
|
|
|
|
|
|
|
|
src = self.fetchFromGitHub {
|
|
|
|
owner = "kolloch";
|
|
|
|
repo = "crate2nix";
|
|
|
|
rev = "v0.11.0-rc.1";
|
|
|
|
hash = "sha256:02yvn61w16sgkdxa019l5y9i2ybyk8h4516718gmarqxx5ws2kz8";
|
|
|
|
};
|
|
|
|
|
|
|
|
cargoDeps = old.cargoDeps.overrideAttrs (_: {
|
|
|
|
inherit src;
|
|
|
|
outputHash = "sha256:03yny9ikqzfpi2mr27r82g54an2s8k9lqi2i4fqalg7g0s2cr2yd";
|
|
|
|
});
|
|
|
|
});
|
2021-04-10 18:05:16 +02:00
|
|
|
}
|