mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
arpack: include OpenBLAS path in pkgconfig file
This commit is contained in:
parent
c55387be69
commit
cd7cfcc9a2
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, gfortran, openblas }:
|
||||
{ stdenv, lib, copyPathsToStore, fetchurl, gfortran, openblas }:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
@ -7,11 +7,17 @@ let
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "arpack-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/opencollab/arpack-ng/archive/${version}.tar.gz";
|
||||
sha256 = "1fwch6vipms1ispzg2djvbzv5wag36f1dmmr3xs3mbp6imfyhvff";
|
||||
};
|
||||
|
||||
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
||||
postPatch = ''
|
||||
substituteInPlace arpack.pc.in --replace "@openblas@" "${openblas}/lib"
|
||||
'';
|
||||
|
||||
buildInputs = [ gfortran openblas ];
|
||||
|
||||
# Auto-detection fails because gfortran brings in BLAS by default
|
||||
|
@ -0,0 +1,11 @@
|
||||
Index: arpack-ng-3.2.0/arpack.pc.in
|
||||
===================================================================
|
||||
--- arpack-ng-3.2.0.orig/arpack.pc.in
|
||||
+++ arpack-ng-3.2.0/arpack.pc.in
|
||||
@@ -5,5 +5,5 @@ libdir=@libdir@
|
||||
Name: arpack
|
||||
Description: ARPACK-NG
|
||||
Version: @PACKAGE_VERSION@
|
||||
-Libs: -L${libdir} -larpack @BLAS_LIBS@ @LAPACK_LIBS@
|
||||
+Libs: -L@openblas@ -L${libdir} -larpack @BLAS_LIBS@ @LAPACK_LIBS@
|
||||
Cflags:
|
1
pkgs/development/libraries/science/math/arpack/series
Normal file
1
pkgs/development/libraries/science/math/arpack/series
Normal file
@ -0,0 +1 @@
|
||||
openblas-libdir.patch
|
Loading…
Reference in New Issue
Block a user