2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake }:
|
2015-11-04 20:07:26 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "Vc";
|
2016-11-23 14:49:18 +00:00
|
|
|
version = "0.7.5";
|
2015-11-04 20:07:26 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "VcDevel";
|
|
|
|
repo = "Vc";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "190s4r2n3jsivl4j2m288j3rqmgjj6gl308hi9mzwyhcfn17q8br";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2016-06-01 01:38:05 +01:00
|
|
|
postPatch = ''
|
|
|
|
sed -i '/OptimizeForArchitecture()/d' cmake/VcMacros.cmake
|
|
|
|
sed -i '/AutodetectHostArchitecture()/d' print_target_architecture.cmake
|
|
|
|
'';
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2015-11-04 20:07:26 +00:00
|
|
|
description = "Library for multiprecision complex arithmetic with exact rounding";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/VcDevel/Vc";
|
2015-11-04 21:04:45 +00:00
|
|
|
license = licenses.bsd3;
|
2015-11-04 20:07:26 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
|
|
|
}
|