nixpkgs/pkgs/development/libraries/vc/default.nix

31 lines
804 B
Nix
Raw Normal View History

2015-11-04 20:07:26 +00:00
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
name = "Vc-${version}";
2016-11-23 15:03:35 +00:00
version = "1.3.0";
2015-11-04 20:07:26 +00:00
src = fetchFromGitHub {
owner = "VcDevel";
repo = "Vc";
rev = version;
2016-11-23 15:03:35 +00:00
sha256 = "18vi92xxg0ly0fw4v06fwls11rahmg5z8xf65jxxrbgf37vc1wxi";
2015-11-04 20:07:26 +00:00
};
nativeBuildInputs = [ cmake ];
enableParallelBuilding = true;
postPatch = ''
sed -i '/OptimizeForArchitecture()/d' cmake/VcMacros.cmake
sed -i '/AutodetectHostArchitecture()/d' print_target_architecture.cmake
'';
2015-11-04 20:07:26 +00:00
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" ];
2015-11-04 20:07:26 +00:00
maintainers = with maintainers; [ abbradar ];
};
}