2021-04-10 18:05:16 +02:00
|
|
|
# This overlay is used to make TVL-specific modifications in the
|
|
|
|
# nixpkgs tree, where required.
|
2023-09-26 08:50:23 +02:00
|
|
|
{ lib, depot, localSystem, ... }:
|
2021-04-10 18:05:16 +02:00
|
|
|
|
2022-04-21 14:08:12 +02:00
|
|
|
self: super:
|
2022-04-21 14:14:37 +02:00
|
|
|
depot.nix.readTree.drvTargets {
|
2023-12-06 08:12:14 +01:00
|
|
|
nix_2_3 = (super.nix_2_3.override {
|
|
|
|
# flaky tests, long painful build, see https://github.com/NixOS/nixpkgs/pull/266443
|
|
|
|
withAWS = false;
|
|
|
|
});
|
2022-11-10 14:41:46 +01:00
|
|
|
nix = self.nix_2_3;
|
2023-12-06 08:12:14 +01:00
|
|
|
nix_latest = super.nix.override ({
|
|
|
|
# flaky tests, long painful build, see https://github.com/NixOS/nixpkgs/pull/266443
|
|
|
|
withAWS = false;
|
|
|
|
});
|
2022-10-19 16:22:38 +02:00
|
|
|
|
2023-09-19 22:41:41 +02:00
|
|
|
# To match telega in emacs-overlay or wherever
|
2023-02-18 21:04:06 +01:00
|
|
|
tdlib = super.tdlib.overrideAttrs (_: {
|
2023-12-31 00:40:16 +01:00
|
|
|
version = "1.8.23";
|
2023-02-18 21:04:06 +01:00
|
|
|
src = self.fetchFromGitHub {
|
|
|
|
owner = "tdlib";
|
|
|
|
repo = "td";
|
2023-12-31 00:40:16 +01:00
|
|
|
rev = "27c3eaeb4964bd5f18d8488e354abde1a4383e49";
|
|
|
|
sha256 = "14f65dfmg2p5hyvi3lffvvazwcd3i3jrrw3c2pwrc5yfgxk3662g";
|
2023-02-18 21:04:06 +01:00
|
|
|
};
|
2023-01-18 19:39:28 +01:00
|
|
|
});
|
|
|
|
|
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
|
|
|
|
|
|
|
# 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.
|
2023-11-16 09:18:10 +01:00
|
|
|
depotExwm = eself.callPackage depot.third_party.exwm.override { };
|
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
|
2023-03-01 15:15:11 +01:00
|
|
|
nix-serve = super.nix-serve.override { nix = self.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
|
|
|
|
2023-12-06 08:12:14 +01:00
|
|
|
crate2nix = (super.crate2nix.override (_: { nix = self.nix_latest; })).overrideAttrs (old: rec {
|
2023-10-10 21:56:11 +02:00
|
|
|
patches = old.patches ++ [
|
|
|
|
# run tests in debug mode, not release mode
|
2023-10-31 09:30:00 +01:00
|
|
|
# https://github.com/nix-community/crate2nix/pull/301
|
2023-10-10 21:56:11 +02:00
|
|
|
./patches/crate2nix-tests-debug.patch
|
|
|
|
];
|
2022-12-16 14:13:53 +01:00
|
|
|
});
|
2023-10-08 11:15:07 +02:00
|
|
|
|
|
|
|
evans = super.evans.overrideAttrs (old: {
|
|
|
|
patches = old.patches or [ ] ++ [
|
|
|
|
# add support for unix domain sockets
|
|
|
|
# https://github.com/ktr0731/evans/pull/680
|
|
|
|
./patches/evans-add-support-for-unix-domain-sockets.patch
|
|
|
|
];
|
|
|
|
});
|
2023-10-20 14:18:02 +02:00
|
|
|
|
|
|
|
# Package gerrit-queue, which is not in nixpkgs yet
|
|
|
|
gerrit-queue = super.buildGoModule {
|
|
|
|
pname = "gerrit-queue";
|
|
|
|
version = "unstable-2023-10-20";
|
|
|
|
vendorHash = "sha256-+Ig4D46NphzpWKXO23Haea9EqVtpda8v9zLPJkbe3bQ=";
|
|
|
|
src = super.fetchFromGitHub {
|
|
|
|
owner = "flokli";
|
|
|
|
repo = "gerrit-queue";
|
|
|
|
rev = "0186dbde15c9b11dc17b422feb74c842f6fa605a";
|
|
|
|
hash = "sha256-zXB5vre/Vr7UOyeMnf2RCtMKm+v5RENH7kGPr/2o7mI=";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Gerrit submit bot";
|
|
|
|
homepage = "https://github.com/tweag/gerrit-queue";
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
};
|
2023-11-06 21:04:17 +01:00
|
|
|
|
2023-11-12 15:32:38 +01:00
|
|
|
# we're vendoring this for now, since the version upgrade has a lot of changes
|
|
|
|
# we can't merge it upstream yet because the Darwin build is broken
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/267033
|
|
|
|
clickhouse = (super.callPackage ./clickhouse {
|
|
|
|
llvmPackages = super.llvmPackages_16;
|
|
|
|
}).overrideAttrs (old: {
|
2023-11-06 21:04:17 +01:00
|
|
|
patches = old.patches or [ ] ++ [
|
|
|
|
# https://github.com/ClickHouse/ClickHouse/pull/56118
|
|
|
|
./patches/clickhouse-support-reading-arrow-LargeListArray.patch
|
|
|
|
];
|
|
|
|
});
|
2021-04-10 18:05:16 +02:00
|
|
|
}
|