Files
nixpkgs/pkgs/by-name/uc/ucblogo/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

46 lines
951 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
wxGTK32,
texinfo,
tetex,
wrapGAppsHook3,
autoconf-archive,
autoreconfHook,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "ucblogo-code";
version = "6.2.4";
src = fetchFromGitHub {
owner = "jrincayc";
repo = "ucblogo-code";
rev = "ca23b30a62eaaf03ea203ae71d00dc45a046514e";
hash = "sha256-BVNKkT0YUqI/z5W6Y/u3WbrHmaw7Z165vFt/mlzjd+8=";
};
nativeBuildInputs = [
autoreconfHook
autoconf-archive
texinfo
tetex
wrapGAppsHook3
];
buildInputs = [
wxGTK32
];
meta = with lib; {
description = "Berkeley Logo interpreter";
homepage = "https://github.com/jrincayc/ucblogo-code";
changelog = "https://github.com/jrincayc/ucblogo-code/blob/${finalAttrs.src.rev}/changes.txt";
license = licenses.gpl3Only;
maintainers = with maintainers; [ matthewcroughan ];
mainProgram = "ucblogo-code";
platforms = platforms.all;
};
})