xin/overlays/default.nix

54 lines
1.6 KiB
Nix
Raw Normal View History

2023-05-28 15:12:04 -06:00
{ isUnstable, xinlib, ... }:
let
2023-05-26 12:17:21 -06:00
inherit (xinlib) prIsOpen;
2023-05-28 15:12:04 -06:00
#openssh = import ./openssh.nix;
2023-05-26 09:41:10 -06:00
obsidian = prIsOpen 233877 (import ./obsidian.nix);
2023-05-28 15:12:04 -06:00
#tailscale = import ./tailscale.nix;
#jetbrains = prIsOpen 232308 (import ./jetbrains.nix);
#tidal-hifi = prIsOpen 228552 (import ./tidal-hifi.nix { inherit lib; });
2023-05-26 09:41:10 -06:00
matrix-synapse = prIsOpen 233651 (import ./matrix-synapse.nix);
in {
nixpkgs.overlays = if isUnstable then [
(_: super: {
elmPackages = super.elmPackages // {
elm = super.elmPackages.elm.overrideAttrs (oldAttrs: {
patches = (oldAttrs.patches or [ ]) ++ [ ./elm-no-color.diff ];
});
};
})
2023-05-24 14:59:02 -06:00
obsidian
2023-05-28 15:12:04 -06:00
#(prIsOpen 234161 tailscale)
] else [
2023-05-23 12:05:33 -06:00
matrix-synapse
2023-05-28 15:12:04 -06:00
#(prIsOpen 234229 tailscale)
];
2022-08-25 12:21:35 -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 ];
# });
# };
# };
# })
# Example of an overlay that changes the buildGoModule function
#tailscale = self: super: {
# tailscale = super.callPackage "${super.path}/pkgs/servers/tailscale" {
# buildGoModule = args:
# super.buildGo119Module (args // rec {
# version = "1.32.2";
# src = super.fetchFromGitHub {
# owner = "tailscale";
# repo = "tailscale";
# rev = "v${version}";
# sha256 = "sha256-CYNHD6TS9KTRftzSn9vAH4QlinqNgU/yZuUYxSvsl/M=";
# };
# vendorSha256 = "sha256-VW6FvbgLcokVGunTCHUXKuH5+O6T55hGIP2g5kFfBsE=";
# });
# };
#};