31 lines
804 B
Nix
31 lines
804 B
Nix
{ stdenv, fetchFromGitHub, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.2.0";
|
|
name = "Vc-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "VcDevel";
|
|
repo = "Vc";
|
|
rev = version;
|
|
sha256 = "0qlfvcxv3nmf5drz5bc9kynaljr513pbn7snwgvghm150skmkpfl";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postPatch = ''
|
|
sed -i '/OptimizeForArchitecture()/d' cmake/VcMacros.cmake
|
|
sed -i '/AutodetectHostArchitecture()/d' print_target_architecture.cmake
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Library for multiprecision complex arithmetic with exact rounding";
|
|
homepage = "https://github.com/VcDevel/Vc";
|
|
license = licenses.bsd3;
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|