Update matrix-synapse pins
This commit is contained in:
parent
714e7d7a57
commit
bb37526111
12 changed files with 81 additions and 81 deletions
27
matrix-synapse@1.152.0/flake.lock
generated
Normal file
27
matrix-synapse@1.152.0/flake.lock
generated
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"nodes": {
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1777644767,
|
||||
"narHash": "sha256-1C/B748L21Mk6VfWiipeKNisU8ZsvnIpVHa8656TygU=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "e9524e88eb4377a95c45291e89c8fdfc4030e143",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "e9524e88eb4377a95c45291e89c8fdfc4030e143",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
"version": 7
|
||||
}
|
||||
30
matrix-synapse@1.152.0/flake.nix
Normal file
30
matrix-synapse@1.152.0/flake.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
description = "matrix-synapse 1.152.0";
|
||||
|
||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/e9524e88eb4377a95c45291e89c8fdfc4030e143";
|
||||
|
||||
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