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 {
version = "1.0.0";
name = "Vc-${version}";
src = fetchFromGitHub {
owner = "VcDevel";
repo = "Vc";
rev = version;
sha256 = "014li9kcbbxinh9r1nngdzspjzs2nxwslcknd950msjkqgnjhz4r";
};
nativeBuildInputs = [ cmake ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Library for multiprecision complex arithmetic with exact rounding";
homepage = https://github.com/VcDevel/Vc;
license = licences.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ abbradar ];
};
}