init
This commit is contained in:
commit
eac7453a0d
12 changed files with 955 additions and 0 deletions
27
matrix-synapse@1.146.0/flake.lock
generated
Normal file
27
matrix-synapse@1.146.0/flake.lock
generated
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"nodes": {
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1770995673,
|
||||
"narHash": "sha256-VSVDo5G9ZXFJ9Y9B7CBxhUU7BD07CV/ROuE0BF1a5+Q=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "0a4980de41791938187f7001afff13f872fa6bf6",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "0a4980de41791938187f7001afff13f872fa6bf6",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
"version": 7
|
||||
}
|
||||
27
matrix-synapse@1.146.0/flake.nix
Normal file
27
matrix-synapse@1.146.0/flake.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
description = "Matrix Synapse 1.146.0";
|
||||
|
||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/0a4980de41791938187f7001afff13f872fa6bf6";
|
||||
|
||||
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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue