element-web, matrix-synapse: pull in updates early
All checks were successful
Flake checks / Check (pull_request) Successful in 15m10s

element-web 1.11.72 fixes support for Firefox ESR. Also get the latest
matrix-synapse version 1.112.0 while we're at it.
This commit is contained in:
teutat3s 2024-07-31 11:44:28 +02:00
parent c3bf5df1d8
commit 21a28e1212
Signed by: teutat3s
GPG key ID: 4FA1D3FA524F22C1
3 changed files with 22 additions and 0 deletions

View file

@ -360,6 +360,22 @@
"type": "github"
}
},
"nixpkgs-331083-331168": {
"locked": {
"lastModified": 1722418656,
"narHash": "sha256-C0zLS4tb8yulQ61L0FOQJ+Z3NC3GylewegS7oKJunSs=",
"owner": "teutat3s",
"repo": "nixpkgs",
"rev": "65251f43b4564dbd46a71da90e420326749c02a9",
"type": "github"
},
"original": {
"owner": "teutat3s",
"ref": "backport-element-desktop-1.11.72",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs-lib": {
"locked": {
"lastModified": 1719876945,
@ -386,6 +402,7 @@
"nixos-flake": "nixos-flake",
"nixpkgs": "nixpkgs",
"nixpkgs-2205": "nixpkgs-2205",
"nixpkgs-331083-331168": "nixpkgs-331083-331168",
"simple-nixos-mailserver": "simple-nixos-mailserver",
"triton-vmtools": "triton-vmtools",
"unstable": "unstable"

View file

@ -4,6 +4,8 @@
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
unstable.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs-331083-331168.url = "github:teutat3s/nixpkgs/backport-element-desktop-1.11.72";
nixpkgs-2205.url = "github:nixos/nixpkgs/nixos-22.05";
nix-darwin.url = "github:lnl7/nix-darwin/master";

View file

@ -10,12 +10,15 @@
final: prev:
let
unstable = import inputs.unstable { system = prev.system; };
nixpkgs-331083-331168 = import inputs.nixpkgs-331083-331168 { system = prev.system; };
in
{
element-themes = prev.callPackage ./pkgs/element-themes { inherit (inputs) element-themes; };
element-stickerpicker = prev.callPackage ./pkgs/element-stickerpicker {
inherit (inputs) element-stickers maunium-stickerpicker;
};
element-web = nixpkgs-331083-331168.element-web;
matrix-synapse-unwrapped = nixpkgs-331083-331168.matrix-synapse-unwrapped;
}
)
];