forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / by-name / gf / gforth / swig.nix
blob84cdaee6a36a61ae5438e359a1970d4d9254e88c
2   swig,
3   pcre,
4   fetchFromGitHub,
5 }:
7 ## for updating to SWIG 4, see
8 ## https://github.com/GeraldWodni/swig/pull/6
9 (swig.overrideAttrs (old: {
10   version = "3.0.9-forth";
11   src = fetchFromGitHub {
12     owner = "GeraldWodni";
13     repo = "swig";
14     rev = "a45b807e5f9d8ca1a43649c8265d2741a393862a";
15     sha256 = "sha256-6nOOPFGFNaQInEkul0ZAh+ks9n3wqCQ6/tbduvG/To0=";
16   };
17   configureFlags = old.configureFlags ++ [ "--enable-forth" ];
18 })).override
19   { pcre2 = pcre; }