python3Packages.instructor: 1.6.4 -> 1.72 (#378975)
[NixPkgs.git] / pkgs / by-name / im / imath / package.nix
blob9a3ddc0a1a5b9e1f900af54ce554b048fb38c9e4
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   cmake,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "imath";
10   version = "3.1.12";
12   src = fetchFromGitHub {
13     owner = "AcademySoftwareFoundation";
14     repo = "imath";
15     rev = "v${version}";
16     sha256 = "sha256-r4FNyNsWdmpZrHOpSvaSUWRYhAU+qnW4lE5uYPKn7Mw=";
17   };
19   nativeBuildInputs = [ cmake ];
21   meta = with lib; {
22     description = "Imath is a C++ and python library of 2D and 3D vector, matrix, and math operations for computer graphics";
23     homepage = "https://github.com/AcademySoftwareFoundation/Imath";
24     license = licenses.bsd3;
25     maintainers = with maintainers; [ paperdigits ];
26     platforms = platforms.all;
27   };