julia03: remove unused dependencies

This commit is contained in:
Thomas Tuegel 2015-06-04 12:48:46 -05:00
parent b255f8df2e
commit 6f3dfc0cf8

View File

@ -1,14 +1,11 @@
{ stdenv, fetchgit, gfortran, perl, m4, llvm, gmp, pcre, zlib { stdenv, fetchgit, gfortran, perl, m4, llvm, gmp, pcre, zlib
, readline, fftwSinglePrec, fftw, libunwind, suitesparse, glpk, fetchurl , readline, fftwSinglePrec, fftw, libunwind, suitesparse, glpk, fetchurl
, ncurses, patchelf, openblas, arpack , ncurses, patchelf, openblas, arpack
, tcl, tk, xproto, libX11, git, mpfr, which, utf8proc , git, mpfr, which, utf8proc
}: }:
with stdenv.lib; with stdenv.lib;
let
realGcc = stdenv.cc.cc;
in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "julia"; pname = "julia";
version = "0.3.9"; version = "0.3.9";
@ -43,7 +40,7 @@ stdenv.mkDerivation rec {
[ [
gfortran gmp pcre llvm readline zlib gfortran gmp pcre llvm readline zlib
fftw fftwSinglePrec libunwind suitesparse glpk ncurses fftw fftwSinglePrec libunwind suitesparse glpk ncurses
arpack openblas tcl tk xproto libX11 mpfr utf8proc arpack openblas mpfr utf8proc
]; ];
nativeBuildInputs = [ patchelf perl m4 which git ]; nativeBuildInputs = [ patchelf perl m4 which git ];