This commit is contained in:
Aaron Bieber 2024-02-13 07:29:39 -07:00
parent cc0124fa70
commit e281dff1b8
No known key found for this signature in database
2 changed files with 2 additions and 13 deletions

View File

@ -8,21 +8,10 @@ let
heisenbridge = prIsOpen.overlay 0 (import ./heisenbridge.nix);
in
{
nixpkgs.overlays = [ heisenbridge ] ++
nixpkgs.overlays = [ heisenbridge matrix-synapse ] ++
(if isUnstable
then [
]
else [
matrix-synapse
]);
}
# 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 ];
# });
# };
# };
# })

View File

@ -32,7 +32,7 @@
,
}:
stdenv.mkDerivation {
inherit pname version src;
inherit pname version src doCheck;
patches =
[