Skip to content

Commit

Permalink
Merge pull request #9007 from vbgl/julia-3.10
Browse files Browse the repository at this point in the history
julia: 0.3.9 -> 0.3.10
  • Loading branch information
ttuegel committed Jul 30, 2015
2 parents 85134cc + 8a6c9f1 commit 942e74b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pkgs/development/compilers/julia/0.3.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ with stdenv.lib;

stdenv.mkDerivation rec {
pname = "julia";
version = "0.3.9";
version = "0.3.10";
name = "${pname}-${version}";

src = fetchgit {
url = "git://github.com/JuliaLang/julia.git";
rev = "refs/tags/v${version}";
sha256 = "ad0820affefd04eb6fba7deb2603756974711846a251900a9202b8d2665a37cf";
sha256 = "0px1zd7qmz6rrjf58k4kq55s7h8mny1w6xvcsrny2wbgckxzhqsg";
name = "julia-git-v${version}";
};

Expand Down Expand Up @@ -132,7 +132,8 @@ stdenv.mkDerivation rec {

enableParallelBuilding = true;

doCheck = true;
# Test fail on i686 (julia version 0.3.10)
doCheck = !stdenv.isi686;
checkTarget = "testall";

meta = {
Expand Down

0 comments on commit 942e74b

Please sign in to comment.