update matrix-synapse pins
This commit is contained in:
parent
b939ed6c7e
commit
eb81ee7d89
2 changed files with 57 additions and 0 deletions
27
matrix-synapse@1.129.0/flake.lock
generated
Normal file
27
matrix-synapse@1.129.0/flake.lock
generated
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"nodes": {
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1746770286,
|
||||
"narHash": "sha256-Y9s4o1rQlKuaYj4YxKlP7E2/e+FZaV5IjbSxxnF/Nxo=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "907e98d6cc08e3261b63e3f8d2831841817b0041",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "907e98d6cc08e3261b63e3f8d2831841817b0041",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
"version": 7
|
||||
}
|
||||
30
matrix-synapse@1.129.0/flake.nix
Normal file
30
matrix-synapse@1.129.0/flake.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
description = "matrix-synapse 1.129.0";
|
||||
|
||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/907e98d6cc08e3261b63e3f8d2831841817b0041";
|
||||
|
||||
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:
|
||||
let
|
||||
pinned = nixpkgs.legacyPackages.${prev.stdenv.hostPlatform.system};
|
||||
in
|
||||
{
|
||||
matrix-synapse = pinned.matrix-synapse;
|
||||
matrix-synapse-unwrapped = pinned.matrix-synapse-unwrapped;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue