Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2e02bcaedcba
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 275cd4973144
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 25, 2018

  1. Copy the full SHA
    275cd49 View commit details
Showing with 3 additions and 10 deletions.
  1. +3 −10 pkgs/applications/science/math/geogebra/default.nix
13 changes: 3 additions & 10 deletions pkgs/applications/science/math/geogebra/default.nix
Original file line number Diff line number Diff line change
@@ -2,20 +2,13 @@

stdenv.mkDerivation rec {
name = "geogebra-${version}";
version = "5-0-382-0";
version = "5-0-444-0";

preferLocalBuild = true;

src = fetchurl {
urls = [
"http://download.geogebra.org/installers/5.0/GeoGebra-Linux-Portable-${version}.tar.bz2"

# Fallback for 5-0-382-0
# To avoid breaks when latest geogebra version is
# removed from `download.geogebra.org`
"http://web.archive.org/web/20170818191250/http://download.geogebra.org/installers/5.0/GeoGebra-Linux-Portable-5-0-382-0.tar.bz2"
];
sha256 = "0xqln1ssm35q8ry4a0ly8rkgw41brmrhn26l6q6r0qqrnw85cnyv";
urls = "https://download.geogebra.org/installers/5.0/GeoGebra-Linux-Portable-${version}.tar.bz2";
sha256 = "1x2h40m62zbhmy42hln5gjj3fwk4b6803v3k9agpv5c6j468sq0p";
};

srcIcon = fetchurl {