2023-06-30 08:16:45 -06:00
|
|
|
{ isUnstable, ... }:
|
|
|
|
#let
|
|
|
|
#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;
|
|
|
|
#jetbrains = prIsOpen 232308 (import ./jetbrains.nix);
|
|
|
|
#tidal-hifi = prIsOpen.overlay 239732 (import ./tidal-hifi.nix);
|
|
|
|
#matrix-synapse = prIsOpen.overlay 238845 (import ./matrix-synapse.nix);
|
|
|
|
#nixd = prIsOpen.overlay 238779 (import ./nixd.nix);
|
|
|
|
#in {
|
|
|
|
{
|
2023-06-30 11:03:36 -06:00
|
|
|
nixpkgs.overlays = if isUnstable then
|
|
|
|
[
|
|
|
|
(_: super: {
|
|
|
|
clementine = super.clementine.overrideAttrs (_: {
|
|
|
|
patches = [
|
|
|
|
(super.fetchpatch {
|
|
|
|
name = "clementine-di-radio-fix.diff";
|
|
|
|
url =
|
|
|
|
"https://patch-diff.githubusercontent.com/raw/clementine-player/Clementine/pull/7217.diff";
|
|
|
|
hash = "sha256-kaKc2YFkXJRPibbKbBCHvlm6Y/H9zS83ohMxtUNUFlM=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
});
|
|
|
|
})
|
|
|
|
]
|
|
|
|
else
|
|
|
|
[ ];
|
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 ];
|
|
|
|
# });
|
|
|
|
# };
|
|
|
|
# };
|
|
|
|
# })
|