ucblogo: init at 6.2.4
This commit is contained in:
parent
3716dbb2ee
commit
20bbe15aea
1 changed files with 44 additions and 0 deletions
44
pkgs/by-name/uc/ucblogo/package.nix
Normal file
44
pkgs/by-name/uc/ucblogo/package.nix
Normal file
|
@ -0,0 +1,44 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, wxGTK32
|
||||
, texinfo
|
||||
, tetex
|
||||
, wrapGAppsHook
|
||||
, 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
|
||||
wrapGAppsHook
|
||||
];
|
||||
|
||||
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;
|
||||
};
|
||||
})
|
Loading…
Reference in a new issue