chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / uc / ucblogo / package.nix
blob08e3610b6fb222d0d30f066222ac03f0ff47852e
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , wxGTK32
5 , texinfo
6 , tetex
7 , wrapGAppsHook3
8 , autoconf-archive
9 , autoreconfHook
12 stdenv.mkDerivation (finalAttrs: {
13   pname = "ucblogo-code";
14   version = "6.2.4";
16   src = fetchFromGitHub {
17     owner = "jrincayc";
18     repo = "ucblogo-code";
19     rev = "ca23b30a62eaaf03ea203ae71d00dc45a046514e";
20     hash = "sha256-BVNKkT0YUqI/z5W6Y/u3WbrHmaw7Z165vFt/mlzjd+8=";
21   };
23   nativeBuildInputs = [
24     autoreconfHook
25     autoconf-archive
26     texinfo
27     tetex
28     wrapGAppsHook3
29   ];
31   buildInputs = [
32     wxGTK32
33   ];
35   meta = with lib; {
36     description = "Berkeley Logo interpreter";
37     homepage = "https://github.com/jrincayc/ucblogo-code";
38     changelog = "https://github.com/jrincayc/ucblogo-code/blob/${finalAttrs.src.rev}/changes.txt";
39     license = licenses.gpl3Only;
40     maintainers = with maintainers; [ matthewcroughan ];
41     mainProgram = "ucblogo-code";
42     platforms = platforms.all;
43   };