c58c1f3b50
http://hydra.nixos.org/build/33122230/nixlog/1/raw => CMake Error at CMakeLists.txt:163 (message): Unsupported target architecture 'i686'. No support_???.cpp file exists for this architecture.
26 lines
638 B
Nix
26 lines
638 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;
|
|
|
|
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 ];
|
|
};
|
|
}
|