vc: init at 0.7.5, 1.0.0

This commit is contained in:
Nikolay Amiantov 2015-11-04 23:07:26 +03:00
parent e3ce30bef4
commit 997bf2c665
3 changed files with 54 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
version = "0.7.5";
name = "Vc-${version}";
src = fetchFromGitHub {
owner = "VcDevel";
repo = "Vc";
rev = version;
sha256 = "190s4r2n3jsivl4j2m288j3rqmgjj6gl308hi9mzwyhcfn17q8br";
};
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 ];
};
}

View file

@ -0,0 +1,25 @@
{ 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 ];
};
}

View file

@ -8433,6 +8433,10 @@ let
vamp = callPackage ../development/libraries/audio/vamp { };
vc = callPackage ../development/libraries/vc { };
vc_0_7 = callPackage ../development/libraries/vc/0.7.nix { };
vcdimager = callPackage ../development/libraries/vcdimager { };
vid-stab = callPackage ../development/libraries/vid-stab { };