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.149.1/flake.lock
generated
Normal file
27
matrix-synapse@1.149.1/flake.lock
generated
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"nodes": {
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1773388702,
|
||||
"narHash": "sha256-ew8WjKAckEShjd5Qta6PelG6prkTGpq0cS8Ot/s9KyM=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "edf5188d072209175d4edd361fd7ae00ca10530e",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "edf5188d072209175d4edd361fd7ae00ca10530e",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
"version": 7
|
||||
}
|
||||
30
matrix-synapse@1.149.1/flake.nix
Normal file
30
matrix-synapse@1.149.1/flake.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
description = "matrix-synapse 1.149.1";
|
||||
|
||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/edf5188d072209175d4edd361fd7ae00ca10530e";
|
||||
|
||||
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