about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNikolay Korotkiy <sikmir@disroot.org>2022-11-26 13:56:00 +0300
committerNikolay Korotkiy <sikmir@disroot.org>2022-11-26 13:58:19 +0300
commit5b4bf09237ec95189037003bb97a7b47997635f5 (patch)
tree35046908dbd2f2cb0b58e3a5cfde02ab7466b6ab
parentec635b51d6ca9536830c0b82d2d41256fde34641 (diff)
geogebra6: fix the meta data to allow autoupdate
Resolve #188260
-rw-r--r--pkgs/applications/science/math/geogebra/geogebra6.nix16
1 files changed, 14 insertions, 2 deletions
diff --git a/pkgs/applications/science/math/geogebra/geogebra6.nix b/pkgs/applications/science/math/geogebra/geogebra6.nix
index de75e558dc679..ea565eaca0612 100644
--- a/pkgs/applications/science/math/geogebra/geogebra6.nix
+++ b/pkgs/applications/science/math/geogebra/geogebra6.nix
@@ -6,10 +6,22 @@ let
   srcIcon = geogebra.srcIcon;
   desktopItem = geogebra.desktopItem;
 
-  meta = with lib; geogebra.meta // {
-    license = licenses.geogebra;
+  meta = with lib; {
+    description = "Dynamic mathematics software with graphics, algebra and spreadsheets";
+    longDescription = ''
+      Dynamic mathematics software for all levels of education that brings
+      together geometry, algebra, spreadsheets, graphing, statistics and
+      calculus in one easy-to-use package.
+    '';
+    homepage = "https://www.geogebra.org/";
     maintainers = with maintainers; [ voidless sikmir ];
+    license = licenses.geogebra;
+    sourceProvenance = with sourceTypes; [
+      binaryBytecode
+      binaryNativeCode  # some jars include native binaries
+    ];
     platforms = with platforms; linux ++ darwin;
+    hydraPlatforms = [];
   };
 
   linuxPkg = stdenv.mkDerivation {