gnome-extension-manager: fix black screen via upstream patch (#358236)

This commit is contained in:
Eman Resu 2024-12-07 07:39:43 -05:00 committed by GitHub
parent 1c09ff099b
commit e2e988d917
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,6 +18,7 @@
, glib
, libbacktrace
, text-engine
, fetchpatch
}:
stdenv.mkDerivation rec {
@ -54,6 +55,14 @@ stdenv.mkDerivation rec {
text-engine
];
patches = [
# fix black window when opened, remove in next release
(fetchpatch {
url = "https://github.com/mjakeman/extension-manager/commit/91d1c42a30e12131dc3c5afd8a709e7db2a95b70.patch";
hash = "sha256-NtsJeqclUx4L3wbyQ46ZCoo4IKSu4/HoT/FD20xriZ4=";
})
];
mesonFlags = [
(lib.mesonOption "package" "Nix")
(lib.mesonOption "distributor" "nixpkgs")