mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
openblas: add version 0.2.11
This commit is contained in:
parent
40ccaa2b4c
commit
df731f151f
36
pkgs/development/libraries/science/math/openblas/default.nix
Normal file
36
pkgs/development/libraries/science/math/openblas/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ stdenv, fetchurl, gfortran, perl, liblapack, config }:
|
||||
|
||||
let local = config.openblas.preferLocalBuild or false;
|
||||
localTarget = config.openblas.target or "";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.2.11";
|
||||
|
||||
name = "openblas-${version}";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/xianyi/OpenBLAS/tarball/v${version}";
|
||||
sha256 = "1va4yhzgj2chcj6kaxgfbzirajp1zgvkic61959aka2xq2c5igms";
|
||||
name = "openblas-${version}.tar.gz";
|
||||
};
|
||||
|
||||
preBuild = "cp ${liblapack.src} lapack-${liblapack.meta.version}.tgz";
|
||||
|
||||
buildInputs = [gfortran perl];
|
||||
|
||||
cpu = builtins.head (stdenv.lib.splitString "-" stdenv.system);
|
||||
|
||||
target = if local then localTarget else
|
||||
if cpu == "i686" then "P2" else
|
||||
if cpu == "x86_64" then "CORE2" else
|
||||
# allow autodetect
|
||||
"";
|
||||
|
||||
makeFlags = "${if target != "" then "TARGET=" else ""}${target} FC=gfortran CC=cc PREFIX=\"\$(out)\" INTERFACE64=1";
|
||||
|
||||
meta = {
|
||||
description = "Basic Linear Algebra Subprograms";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
homepage = "https://github.com/xianyi/OpenBLAS";
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
@ -10919,7 +10919,9 @@ let
|
||||
# julia is pinned to specific versions of openblas, so keep old versions
|
||||
# until they aren't needed. The un-versioned attribute may continue to track
|
||||
# upstream development.
|
||||
openblas = openblas_0_2_10;
|
||||
openblas = callPackage ../development/libraries/science/math/openblas {
|
||||
liblapack = liblapack_3_5_0;
|
||||
};
|
||||
openblas_0_2_10 = callPackage ../development/libraries/science/math/openblas/0.2.10.nix {
|
||||
liblapack = liblapack_3_5_0;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user