Unverified Commit 62e8f9d7 authored by Gavin John's avatar Gavin John
Browse files

gpredict-unstable: init at 2.4.0-unstable-2024-09-17

parent 4c448abb
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
{
  lib,
  fetchFromGitHub,
  goocanvas3,
  nix-update-script,
  gpredict,
}:

(gpredict.override {
  goocanvas2 = goocanvas3;
}).overrideAttrs
  (finalAttrs: {
    # Next version is 2.4.0
    version = "2.4.0-unstable-2024-09-17";

    src = fetchFromGitHub {
      owner = "csete";
      repo = "gpredict";
      rev = "91a4a3fb15e7eab0374d1bb7c859d386818b48ee";
      hash = "sha256-/XCJ+jCSY4o0OLVVY6OGvnmMw6aI/iQOhjyLYWPj7Ec=";
    };

    patches = [ ];

    passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; };
  })