mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 17:34:04 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
65 lines
1.4 KiB
Nix
65 lines
1.4 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, perl
|
|
, python3
|
|
|
|
# Enable BLAS interface with 64-bit integer width.
|
|
, blas64 ? false
|
|
|
|
# Target architecture. x86_64 builds Intel and AMD kernels.
|
|
, withArchitecture ? "x86_64"
|
|
|
|
# Enable OpenMP-based threading.
|
|
, withOpenMP ? true
|
|
}:
|
|
|
|
let
|
|
blasIntSize = if blas64 then "64" else "32";
|
|
in stdenv.mkDerivation rec {
|
|
pname = "blis";
|
|
version = "1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "flame";
|
|
repo = "blis";
|
|
rev = version;
|
|
sha256 = "sha256-lAo6C34QQvXr3LmcsnTp4+Imi/lKxzcWu3EJkVgLvDI=";
|
|
};
|
|
|
|
inherit blas64;
|
|
|
|
nativeBuildInputs = [
|
|
perl
|
|
python3
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
configureFlags = [
|
|
"--enable-cblas"
|
|
"--blas-int-size=${blasIntSize}"
|
|
] ++ lib.optionals withOpenMP [ "--enable-threading=openmp" ]
|
|
++ [ withArchitecture ];
|
|
|
|
postPatch = ''
|
|
patchShebangs configure build/flatten-headers.py
|
|
'';
|
|
|
|
postInstall = ''
|
|
ln -s $out/lib/libblis.so.4 $out/lib/libblas.so.3
|
|
ln -s $out/lib/libblis.so.4 $out/lib/libcblas.so.3
|
|
ln -s $out/lib/libblas.so.3 $out/lib/libblas.so
|
|
ln -s $out/lib/libcblas.so.3 $out/lib/libcblas.so
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "BLAS-compatible linear algebra library";
|
|
homepage = "https://github.com/flame/blis";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ stephen-huan ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|