about summary refs log tree commit diff
diff options
context:
space:
mode:
authormatthewcroughan <matt@croughan.sh>2024-02-20 16:24:16 +0000
committerEmery Hemingway <ehmry@posteo.net>2024-05-02 15:31:49 +0000
commit20bbe15aea8eb017bf83aa9575cdc71870f479c1 (patch)
tree788ea04cf74be2e22db30d2fd70cb229ec8be654
parent3716dbb2ee864e50c9bfed767d25c916d69ec48c (diff)
downloadnixlib-20bbe15aea8eb017bf83aa9575cdc71870f479c1.tar
nixlib-20bbe15aea8eb017bf83aa9575cdc71870f479c1.tar.gz
nixlib-20bbe15aea8eb017bf83aa9575cdc71870f479c1.tar.bz2
nixlib-20bbe15aea8eb017bf83aa9575cdc71870f479c1.tar.lz
nixlib-20bbe15aea8eb017bf83aa9575cdc71870f479c1.tar.xz
nixlib-20bbe15aea8eb017bf83aa9575cdc71870f479c1.tar.zst
nixlib-20bbe15aea8eb017bf83aa9575cdc71870f479c1.zip
ucblogo: init at 6.2.4
-rw-r--r--pkgs/by-name/uc/ucblogo/package.nix44
1 files changed, 44 insertions, 0 deletions
diff --git a/pkgs/by-name/uc/ucblogo/package.nix b/pkgs/by-name/uc/ucblogo/package.nix
new file mode 100644
index 000000000000..40ccdecf6c68
--- /dev/null
+++ b/pkgs/by-name/uc/ucblogo/package.nix
@@ -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;
+  };
+})