gnome.gnome-shell: 45.1 → 45.2

https://gitlab.gnome.org/GNOME/gnome-shell/-/compare/45.1...45.2
This commit is contained in:
Jan Tojnar 2023-12-09 11:18:49 +00:00
parent 0918edb59f
commit d18b7d6568

View File

@ -65,15 +65,15 @@
let let
pythonEnv = python3.withPackages (ps: with ps; [ pygobject3 ]); pythonEnv = python3.withPackages (ps: with ps; [ pygobject3 ]);
in in
stdenv.mkDerivation rec { stdenv.mkDerivation (finalAttrs: {
pname = "gnome-shell"; pname = "gnome-shell";
version = "45.1"; version = "45.2";
outputs = [ "out" "devdoc" ]; outputs = [ "out" "devdoc" ];
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/gnome-shell/${lib.versions.major version}/${pname}-${version}.tar.xz"; url = "mirror://gnome/sources/gnome-shell/${lib.versions.major finalAttrs.version}/gnome-shell-${finalAttrs.version}.tar.xz";
sha256 = "FfykvWEpqLP5kBl/vR7ljXS2QVEK+q8Igqf6NmNPxfI="; sha256 = "igz7+HKxp2JpbIbhPe/p82dekteVFOup0AC1thHCaiM=";
}; };
patches = [ patches = [
@ -231,4 +231,4 @@ stdenv.mkDerivation rec {
platforms = platforms.linux; platforms = platforms.linux;
}; };
} })