2015-11-04 20:07:26 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-03-03 11:33:17 +00:00
|
|
|
version = "1.2.0";
|
2015-11-04 20:07:26 +00:00
|
|
|
name = "Vc-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "VcDevel";
|
|
|
|
repo = "Vc";
|
|
|
|
rev = version;
|
2016-03-03 11:33:17 +00:00
|
|
|
sha256 = "0qlfvcxv3nmf5drz5bc9kynaljr513pbn7snwgvghm150skmkpfl";
|
2015-11-04 20:07:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Library for multiprecision complex arithmetic with exact rounding";
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|