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

26 lines
617 B
Nix
Raw Normal View History

2015-11-04 20:07:26 +00:00
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
2016-01-13 17:00:38 +00:00
version = "1.1.0";
2015-11-04 20:07:26 +00:00
name = "Vc-${version}";
src = fetchFromGitHub {
owner = "VcDevel";
repo = "Vc";
rev = version;
2016-01-13 17:00:38 +00:00
sha256 = "1i27zpwcpsfabvf1vpyx5rlzkkgqfd55c3c0jq5fghywyj6743j8";
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;
license = licenses.bsd3;
2015-11-04 20:07:26 +00:00
platforms = platforms.all;
maintainers = with maintainers; [ abbradar ];
};
}