101 lines
2.8 KiB
Nix
101 lines
2.8 KiB
Nix
|
{
|
||
|
lib,
|
||
|
stdenv,
|
||
|
unzip,
|
||
|
fetchurl,
|
||
|
electron,
|
||
|
makeWrapper,
|
||
|
geogebra,
|
||
|
}:
|
||
|
let
|
||
|
pname = "geogebra";
|
||
|
version = "6-0-794-0";
|
||
|
|
||
|
srcIcon = geogebra.srcIcon;
|
||
|
desktopItem = geogebra.desktopItem;
|
||
|
|
||
|
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 {
|
||
|
inherit pname version meta;
|
||
|
|
||
|
src = fetchurl {
|
||
|
urls = [
|
||
|
"https://download.geogebra.org/installers/6.0/GeoGebra-Linux64-Portable-${version}.zip"
|
||
|
"https://web.archive.org/web/20230824011801/https://download.geogebra.org/installers/6.0/GeoGebra-Linux64-Portable-${version}.zip"
|
||
|
];
|
||
|
hash = "sha256-sNCq1Xcx/Y5r+SIRiqQYcG9dVsfIC2Ef5KJf+tgfxC8=";
|
||
|
};
|
||
|
|
||
|
dontConfigure = true;
|
||
|
dontBuild = true;
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
unzip
|
||
|
makeWrapper
|
||
|
];
|
||
|
|
||
|
unpackPhase = ''
|
||
|
unzip $src
|
||
|
'';
|
||
|
|
||
|
installPhase = ''
|
||
|
mkdir -p $out/libexec/geogebra/ $out/bin
|
||
|
cp -r GeoGebra-linux-x64/{resources,locales} "$out/"
|
||
|
makeWrapper ${lib.getBin electron}/bin/electron $out/bin/geogebra \
|
||
|
--add-flags "$out/resources/app" \
|
||
|
--add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}"
|
||
|
install -Dm644 "${desktopItem}/share/applications/"* \
|
||
|
-t $out/share/applications/
|
||
|
|
||
|
install -Dm644 "${srcIcon}" \
|
||
|
"$out/share/icons/hicolor/scalable/apps/geogebra.svg"
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
darwinPkg = stdenv.mkDerivation {
|
||
|
inherit pname version;
|
||
|
|
||
|
src = fetchurl {
|
||
|
urls = [
|
||
|
"https://download.geogebra.org/installers/6.0/GeoGebra-Classic-6-MacOS-Portable-${version}.zip"
|
||
|
"https://web.archive.org/web/20230824012900/https://download.geogebra.org/installers/6.0/GeoGebra-Classic-6-MacOS-Portable-${version}.zip"
|
||
|
];
|
||
|
hash = "sha256-CrSoKAjXiejfJHyv8wIpcRr2d8u/50HnatiDm1CdnGQ=";
|
||
|
};
|
||
|
|
||
|
dontUnpack = true;
|
||
|
|
||
|
nativeBuildInputs = [ unzip ];
|
||
|
|
||
|
installPhase = ''
|
||
|
install -dm755 $out/Applications
|
||
|
unzip $src -d $out/Applications
|
||
|
'';
|
||
|
|
||
|
meta = meta // {
|
||
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
||
|
};
|
||
|
};
|
||
|
in
|
||
|
if stdenv.hostPlatform.isDarwin then darwinPkg else linuxPkg
|