imath: init at 3.0.5
This commit is contained in:
parent
56fadd63bd
commit
4449a20ae1
2 changed files with 29 additions and 0 deletions
27
pkgs/development/libraries/imath/default.nix
Normal file
27
pkgs/development/libraries/imath/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "imath";
|
||||
version = "3.0.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "AcademySoftwareFoundation";
|
||||
repo = "imath";
|
||||
rev = "v${version}";
|
||||
sha256 = "0nwf8622j01p699nkkbal6xxs1snzzhz4cn6d76yppgvdhgyahsc";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Imath is a C++ and python library of 2D and 3D vector, matrix, and math operations for computer graphics";
|
||||
homepage = "https://github.com/AcademySoftwareFoundation/Imath";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ paperdigits ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -18004,6 +18004,8 @@ with pkgs;
|
|||
|
||||
opencv = opencv4;
|
||||
|
||||
imath = callPackage ../development/libraries/imath { };
|
||||
|
||||
openexr = callPackage ../development/libraries/openexr { };
|
||||
|
||||
openexrid-unstable = callPackage ../development/libraries/openexrid-unstable { };
|
||||
|
|
Loading…
Reference in a new issue