From 8df7571bbcaebae2cc04fe7575f851af766c19c2 Mon Sep 17 00:00:00 2001 From: obadz Date: Wed, 10 Aug 2016 14:35:14 +0100 Subject: [PATCH] geogebra: don't build on hydra since derivation just unpacks jars --- pkgs/applications/science/math/geogebra/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/science/math/geogebra/default.nix b/pkgs/applications/science/math/geogebra/default.nix index d92318ef31a..fcbd1356665 100644 --- a/pkgs/applications/science/math/geogebra/default.nix +++ b/pkgs/applications/science/math/geogebra/default.nix @@ -4,6 +4,8 @@ stdenv.mkDerivation rec { name = "geogebra-${version}"; version = "5.0.265.0"; + preferLocalBuild = true; + src = fetchurl { url = "http://download.geogebra.org/installers/5.0/GeoGebra-Linux-Portable-${version}.tar.bz2"; sha256 = "74e5abfa098ee0fc464cd391cd3ef6db474ff25e8ea4fbcd82c4b4b5d3d5c459"; @@ -51,5 +53,6 @@ stdenv.mkDerivation rec { homepage = https://www.geogebra.org/; license = with licenses; [ gpl3 cc-by-nc-sa-30 geogebra ]; platforms = platforms.all; + hydraPlatforms = []; }; }