gnome3.gnome-shell: Switch to master
It contains several critical fixes.
This commit is contained in:
parent
f70f7b6ea4
commit
7ba4bb4f30
@ -1,4 +1,4 @@
|
|||||||
{ lib, stdenv, fetchurl, meson, ninja, gettext, pkg-config, spidermonkey_68, glib
|
{ lib, stdenv, fetchurl, fetchpatch, meson, ninja, gettext, pkg-config, spidermonkey_68, glib
|
||||||
, gnome3, gnome-menus, substituteAll }:
|
, gnome3, gnome-menus, substituteAll }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -22,6 +22,14 @@ stdenv.mkDerivation rec {
|
|||||||
src = ./fix_gmenu.patch;
|
src = ./fix_gmenu.patch;
|
||||||
gmenu_path = "${gnome-menus}/lib/girepository-1.0";
|
gmenu_path = "${gnome-menus}/lib/girepository-1.0";
|
||||||
})
|
})
|
||||||
|
|
||||||
|
# Do not show welcome dialog in gnome-classic.
|
||||||
|
# Needed for gnome-shell 40.1.
|
||||||
|
# https://gitlab.gnome.org/GNOME/gnome-shell-extensions/merge_requests/169
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://gitlab.gnome.org/GNOME/gnome-shell-extensions/commit/3e8bbb07ea7109c44d5ac7998f473779e742d041.patch";
|
||||||
|
sha256 = "jSmPwSBgRBfPPP9mGVjw1mSWumIXQqtA6tSqHr3U+3w=";
|
||||||
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
{ fetchurl
|
{ fetchurl
|
||||||
, fetchpatch
|
, fetchpatch
|
||||||
|
, fetchgit
|
||||||
, substituteAll
|
, substituteAll
|
||||||
, lib, stdenv
|
, lib, stdenv
|
||||||
, meson
|
, meson
|
||||||
@ -66,14 +67,20 @@ let
|
|||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gnome-shell";
|
pname = "gnome-shell";
|
||||||
version = "40.0";
|
version = "40.0-unstable-2021-05-01";
|
||||||
|
|
||||||
outputs = [ "out" "devdoc" ];
|
outputs = [ "out" "devdoc" ];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchgit {
|
||||||
url = "mirror://gnome/sources/gnome-shell/${lib.versions.major version}/${pname}-${version}.tar.xz";
|
url = "https://gitlab.gnome.org/GNOME/gnome-shell.git";
|
||||||
sha256 = "sha256-vOcfQC36qcXiab9lv0iiI0PYlubPmiw0ZpOS1/v2hHg=";
|
rev = "a8a79c03330427808e776c344f7ebc42782a1b5a";
|
||||||
|
sha256 = "ivHV0SRpnBqsdC7fu1Xhtd/BA55O0UdbUyDLy5KHNYs=";
|
||||||
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
# src = fetchurl {
|
||||||
|
# url = "mirror://gnome/sources/gnome-shell/${lib.versions.major version}/${pname}-${version}.tar.xz";
|
||||||
|
# sha256 = "sha256-vOcfQC36qcXiab9lv0iiI0PYlubPmiw0ZpOS1/v2hHg=";
|
||||||
|
# };
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
# Hardcode paths to various dependencies so that they can be found at runtime.
|
# Hardcode paths to various dependencies so that they can be found at runtime.
|
||||||
@ -97,18 +104,6 @@ stdenv.mkDerivation rec {
|
|||||||
revert = true;
|
revert = true;
|
||||||
sha256 = "14h7ahlxgly0n3sskzq9dhxzbyb04fn80pv74vz1526396676dzl";
|
sha256 = "14h7ahlxgly0n3sskzq9dhxzbyb04fn80pv74vz1526396676dzl";
|
||||||
})
|
})
|
||||||
|
|
||||||
# Fix copying technical details when extension crashes.
|
|
||||||
# https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/1795
|
|
||||||
(fetchpatch {
|
|
||||||
url = "https://gitlab.gnome.org/GNOME/gnome-shell/commit/1b5d71130e3a48d8f636542f979346add7829544.patch";
|
|
||||||
sha256 = "WXRG/+u/N7KTTG1HutcMvw5HU2XWUmqFExmOXrOkeeA=";
|
|
||||||
})
|
|
||||||
# https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/1796
|
|
||||||
(fetchpatch {
|
|
||||||
url = "https://gitlab.gnome.org/GNOME/gnome-shell/commit/53dd291aba24e9eab3994b0ffeadec05e0150470.patch";
|
|
||||||
sha256 = "xD0iIjlUGDLM5tTNDNtx6ZgxL25EKYgaBEH4JOZh8AM=";
|
|
||||||
})
|
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user