This commit is contained in:
Abel Luck 2026-02-24 15:34:40 +01:00
commit eac7453a0d
12 changed files with 955 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{
description = "Matrix Synapse 1.144.0";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/0e2c7355d17358d440adeadfe1a9cb77fccc5891";
outputs =
{ nixpkgs, ... }:
let
forAllSystems = nixpkgs.lib.genAttrs [
"x86_64-linux"
"aarch64-linux"
];
in
{
packages = forAllSystems (system: {
default = nixpkgs.legacyPackages.${system}.matrix-synapse;
matrix-synapse = nixpkgs.legacyPackages.${system}.matrix-synapse;
matrix-synapse-unwrapped = nixpkgs.legacyPackages.${system}.matrix-synapse-unwrapped;
});
overlays.default = _final: prev: {
matrix-synapse = (import nixpkgs { inherit (prev.stdenv.hostPlatform) system; }).matrix-synapse;
matrix-synapse-unwrapped =
(import nixpkgs { inherit (prev.stdenv.hostPlatform) system; }).matrix-synapse-unwrapped;
};
};
}