mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
Don't overspecify the julia version
This is to bring the julia version information into accordance with section 7.3.2 of the nixpkgs manual: The version in the filename should leave out unnecessary detail. For instance, if we keep the latest Firefox 2.0.x and 3.5.x versions in Nixpkgs, they should be named firefox/2.0.nix and firefox/3.5.nix, respectively (which, at a given point, might contain versions 2.0.0.20 and 3.5.4). Julia uses semantic versioning (http://semver.org), so the third digit (the patch level) represents backwards-compatible bug fixes only.
This commit is contained in:
parent
59f107dd5d
commit
90181a4a3d
|
@ -3572,23 +3572,23 @@ let
|
|||
|
||||
jikes = callPackage ../development/compilers/jikes { };
|
||||
|
||||
julia021 = callPackage ../development/compilers/julia/0.2.1.nix {
|
||||
julia02 = callPackage ../development/compilers/julia/0.2.nix {
|
||||
liblapack = liblapack.override {shared = true;};
|
||||
llvm = llvm_33;
|
||||
openblas = openblas_0_2_2;
|
||||
suitesparse = suitesparse_4_2;
|
||||
};
|
||||
|
||||
julia035 = let
|
||||
julia03 = let
|
||||
liblapack = liblapack_3_5_0.override {shared = true;};
|
||||
in callPackage ../development/compilers/julia/0.3.5.nix {
|
||||
in callPackage ../development/compilers/julia/0.3.nix {
|
||||
inherit liblapack;
|
||||
suitesparse = suitesparse_4_2.override {
|
||||
inherit liblapack;
|
||||
};
|
||||
llvm = llvm_33;
|
||||
};
|
||||
julia = julia035;
|
||||
julia = julia03;
|
||||
|
||||
lazarus = callPackage ../development/compilers/fpc/lazarus.nix {
|
||||
fpc = fpc;
|
||||
|
|
Loading…
Reference in a new issue