imath 3.1.9 -> 3.1.10 https://github.com/AcademySoftwareFoundation/imath/releases attrpath: imath Checking auto update branch... No auto update branch exists Old version 3.1.9" not present in staging derivation file with contents: { lib , stdenv , fetchFromGitHub , cmake }: stdenv.mkDerivation rec { pname = "imath"; version = "3.1.10"; src = fetchFromGitHub { owner = "AcademySoftwareFoundation"; repo = "imath"; rev = "v${version}"; sha256 = "sha256-Of/F2FfSvVnhrafRqAyV/2VZpRtDN5Pg5AnUAgL3wiM="; }; 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; }; }