nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 fetchFromGitHub,
4 goocanvas_3,
5 nix-update-script,
6 gpredict,
7}:
8
9(gpredict.override {
10 goocanvas_2 = goocanvas_3;
11}).overrideAttrs
12 (finalAttrs: {
13 version = "2.2.1-unstable-2025-09-20";
14
15 src = fetchFromGitHub {
16 owner = "csete";
17 repo = "gpredict";
18 rev = "34af48e6bfd9647559abb1df4907a65d064fc870";
19 hash = "sha256-G4bS7w/USIzYOa+aYv3YQCbUQolV22Z/7+71GHHSUpk=";
20 };
21
22 patches = [ ];
23
24 passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; };
25 })