mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 07:00:43 +00:00
vc: init at 0.7.5, 1.0.0
This commit is contained in:
parent
e3ce30bef4
commit
997bf2c665
25
pkgs/development/libraries/vc/0.7.nix
Normal file
25
pkgs/development/libraries/vc/0.7.nix
Normal 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 ];
|
||||
};
|
||||
}
|
25
pkgs/development/libraries/vc/default.nix
Normal file
25
pkgs/development/libraries/vc/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue