2023-09-12 08:44:05 -06:00
|
|
|
{ isUnstable
|
|
|
|
, xinlib
|
|
|
|
, ...
|
|
|
|
}:
|
|
|
|
let
|
2023-07-18 20:24:12 -06:00
|
|
|
inherit (xinlib) prIsOpen;
|
|
|
|
#_1password-gui = prIsOpen.overlay 235900 (import ./1password-gui.nix);
|
|
|
|
#openssh = import ./openssh.nix;
|
|
|
|
#obsidian = prIsOpen.overlay 235408 (import ./obsidian.nix);
|
|
|
|
#tailscale = prIsOpen.overlay 239176 import ./tailscale.nix;
|
|
|
|
#tidal-hifi = prIsOpen.overlay 239732 (import ./tidal-hifi.nix);
|
2023-10-24 19:06:32 -06:00
|
|
|
matrix-synapse = prIsOpen.overlay 263243 (import ./matrix-synapse.nix);
|
2023-07-18 20:24:12 -06:00
|
|
|
#nixd = prIsOpen.overlay 238779 (import ./nixd.nix);
|
2023-08-28 10:15:19 -06:00
|
|
|
heisenbridge = prIsOpen.overlay 0 (import ./heisenbridge.nix);
|
2023-08-28 06:21:14 -06:00
|
|
|
#rex = prIsOpen.overlay 0 (import ./rex.nix);
|
2023-10-12 07:17:09 -06:00
|
|
|
signal-desktop = prIsOpen.overlay 260160 (import ./signal-desktop.nix);
|
2023-10-17 12:39:18 -06:00
|
|
|
bruno = prIsOpen.overlay 260160 (import ./bruno.nix);
|
2023-10-21 15:26:46 -06:00
|
|
|
pls = prIsOpen.overlay 262524 (import ./PLS.nix);
|
2023-09-12 08:44:05 -06:00
|
|
|
in
|
|
|
|
{
|
2023-07-11 09:12:50 -06:00
|
|
|
nixpkgs.overlays =
|
|
|
|
if isUnstable
|
|
|
|
then [
|
2023-10-21 15:26:46 -06:00
|
|
|
pls
|
2023-10-17 12:39:18 -06:00
|
|
|
bruno
|
2023-10-12 07:17:09 -06:00
|
|
|
signal-desktop
|
2023-08-28 06:21:14 -06:00
|
|
|
#rex
|
2023-08-28 10:15:19 -06:00
|
|
|
heisenbridge
|
2023-09-15 07:10:55 -06:00
|
|
|
(_: super: {
|
|
|
|
cloud-hypervisor = super.cloud-hypervisor.overrideAttrs (_: {
|
|
|
|
cargoTestFlags = [ "--bins" ];
|
|
|
|
});
|
|
|
|
})
|
2023-06-30 11:03:36 -06:00
|
|
|
(_: super: {
|
|
|
|
clementine = super.clementine.overrideAttrs (_: {
|
|
|
|
patches = [
|
|
|
|
(super.fetchpatch {
|
|
|
|
name = "clementine-di-radio-fix.diff";
|
2023-07-11 09:12:50 -06:00
|
|
|
url = "https://patch-diff.githubusercontent.com/raw/clementine-player/Clementine/pull/7217.diff";
|
2023-06-30 11:03:36 -06:00
|
|
|
hash = "sha256-kaKc2YFkXJRPibbKbBCHvlm6Y/H9zS83ohMxtUNUFlM=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
});
|
|
|
|
})
|
|
|
|
]
|
2023-07-18 20:24:12 -06:00
|
|
|
else [
|
2023-08-28 06:21:14 -06:00
|
|
|
#rex
|
2023-09-19 10:35:16 -06:00
|
|
|
(_: super: {
|
|
|
|
python3 = super.python3.override {
|
|
|
|
packageOverrides = _: python-super: {
|
|
|
|
pillow = python-super.pillow.overrideAttrs (_: rec {
|
|
|
|
version = "10.0.1";
|
|
|
|
src = python-super.fetchPypi {
|
|
|
|
pname = "Pillow";
|
|
|
|
inherit version;
|
|
|
|
hash = "sha256-1ylnsGvpMA/tXPvItbr87sSL983H2rZrHSVJA1KHGR0=";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
})
|
2023-10-24 07:21:12 -06:00
|
|
|
matrix-synapse
|
2023-08-28 10:15:19 -06:00
|
|
|
heisenbridge
|
2023-08-17 06:11:44 -06:00
|
|
|
(_: super: {
|
|
|
|
invidious = super.invidious.overrideAttrs (_: {
|
|
|
|
patches = [
|
|
|
|
(super.fetchpatch {
|
|
|
|
name = "invidious-newpipe.diff";
|
|
|
|
url = "https://patch-diff.githubusercontent.com/raw/iv-org/invidious/pull/4037.patch";
|
|
|
|
hash = "sha256-KyqQtmfIPIX48S8SZnSlvCLvdw6Ws1u0oWEk8jLKWlU=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
});
|
|
|
|
})
|
2023-07-18 20:24:12 -06:00
|
|
|
];
|
2022-08-25 12:21:35 -06:00
|
|
|
}
|
2022-10-01 07:18:49 -06:00
|
|
|
# Example Python dep overlay
|
|
|
|
# (self: super: {
|
|
|
|
# python3 = super.python3.override {
|
|
|
|
# packageOverrides = python-self: python-super: {
|
|
|
|
# canonicaljson = python-super.canonicaljson.overrideAttrs (oldAttrs: {
|
|
|
|
# nativeBuildInputs = [ python-super.setuptools ];
|
|
|
|
# });
|
|
|
|
# };
|
|
|
|
# };
|
|
|
|
# })
|