gnome.aisleriot: 3.22.32 → 3.22.33

https://gitlab.gnome.org/GNOME/aisleriot/-/compare/3.22.32...3.22.33
This commit is contained in:
Jan Tojnar 2024-05-26 11:25:36 +00:00
parent a90ad835fd
commit 2b0062f5fa

View File

@ -16,16 +16,16 @@
, yelp-tools , yelp-tools
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation (finalAttrs: {
pname = "aisleriot"; pname = "aisleriot";
version = "3.22.32"; version = "3.22.33";
src = fetchFromGitLab { src = fetchFromGitLab {
domain = "gitlab.gnome.org"; domain = "gitlab.gnome.org";
owner = "GNOME"; owner = "GNOME";
repo = "aisleriot"; repo = "aisleriot";
rev = version; rev = finalAttrs.version;
sha256 = "sha256-+U/EsKTZjWa05DbILWAxqIpMcZ0DP0l4LIYxM2wCFdM="; sha256 = "sha256-HylhDBgkAJrrs/r42v3aDNR8mBJaqnJHyY7T3QW1eWg=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -70,4 +70,4 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
platforms = platforms.linux; platforms = platforms.linux;
}; };
} })