Skip to content

Commit

Permalink
ghex: 46.1 → 46.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jtojnar committed Feb 8, 2025
1 parent 00704a3 commit 12da928
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pkgs/by-name/gh/ghex/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
wrapGAppsHook4,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "ghex";
version = "46.1";
version = "46.2";

outputs = [
"out"
Expand All @@ -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 = [
Expand Down Expand Up @@ -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;
};
}
})

0 comments on commit 12da928

Please sign in to comment.