ghex: 46.1 → 46.2

https://gitlab.gnome.org/GNOME/ghex/-/compare/46.1...46.2
This commit is contained in:
Jan Tojnar
2025-02-08 22:04:11 +01:00
parent 00704a3957
commit 12da928bf3
+6 -6
View File
@@ -20,9 +20,9 @@
wrapGAppsHook4,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "ghex";
version = "46.1";
version = "46.2";
outputs = [
"out"
@@ -31,8 +31,8 @@ stdenv.mkDerivation rec {
];
src = fetchurl {
url = "mirror://gnome/sources/ghex/${lib.versions.major version}/ghex-${version}.tar.xz";
hash = "sha256-ihOXVHTu4ncZsprXY/GyR2Chrt5tfaS2I3AwcLwm6f0=";
url = "mirror://gnome/sources/ghex/${lib.versions.major finalAttrs.version}/ghex-${finalAttrs.version}.tar.xz";
hash = "sha256-qPJ2o2OXpw0guGL/fGZCQ9nPKJHeub4G10Wk8axmHzE=";
};
nativeBuildInputs = [
@@ -83,11 +83,11 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://gitlab.gnome.org/GNOME/ghex";
changelog = "https://gitlab.gnome.org/GNOME/ghex/-/blob/${version}/NEWS?ref_type=tags";
changelog = "https://gitlab.gnome.org/GNOME/ghex/-/blob/${finalAttrs.version}/NEWS?ref_type=tags";
description = "Hex editor for GNOME desktop environment";
mainProgram = "ghex";
platforms = platforms.linux;
license = licenses.gpl2Plus;
maintainers = teams.gnome.members;
};
}
})