Commit f04e2853 authored by Guy Chronister's avatar Guy Chronister
Browse files

programmer-calculator: switch to finalAttrs and modernize hash

- wrap mkDerivation in (finalAttrs:
- replace sha256 = with hash =
- update changelog URL to use finalAttrs.version
parent 4da093dc
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
  ncurses,
}:

gccStdenv.mkDerivation rec {
gccStdenv.mkDerivation (finalAttrs: {
  pname = "programmer-calculator";
  version = "3.0-unstable-2025-11-06";

@@ -13,7 +13,7 @@ gccStdenv.mkDerivation rec {
    owner = "alt-romes";
    repo = "programmer-calculator";
    rev = "153272c50b2491ddf25dfbfcf228a08a3b3ace69";
    sha256 = "sha256-24OYG3tVxcc/1i9HRrzW/jPY41KnKkugLziWnG1wQIw=";
    hash = "sha256-24OYG3tVxcc/1i9HRrzW/jPY41KnKkugLziWnG1wQIw=";
  };

  buildInputs = [ ncurses ];
@@ -32,9 +32,9 @@ gccStdenv.mkDerivation rec {
      representations, sizes, and overall close to the bits
    '';
    homepage = "https://alt-romes.github.io/programmer-calculator";
    changelog = "https://github.com/alt-romes/programmer-calculator/releases/tag/v${lib.versions.majorMinor version}";
    changelog = "https://github.com/alt-romes/programmer-calculator/releases/tag/v${lib.versions.majorMinor finalAttrs.version}";
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [ cjab ];
    platforms = lib.platforms.all;
  };
}
})