cglm 0.9.1 -> 0.9.2 https://repology.org/project/cglm/versions attrpath: cglm Checking auto update branch... No auto update branch exists Old version 0.9.1" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , cmake }: stdenv.mkDerivation rec { pname = "cglm"; version = "0.9.2"; src = fetchFromGitHub { owner = "recp"; repo = "cglm"; rev = "v${version}"; sha256 = "sha256-jaG+XGbSx5SaNhGFWLh+1WTB+ya3c5tBZYs9xKIRafI="; }; nativeBuildInputs = [ cmake ]; postPatch = '' substituteInPlace CMakeLists.txt \ --replace '\$'{prefix}/'$'{CMAKE_INSTALL_LIBDIR} '$'{CMAKE_INSTALL_FULL_LIBDIR} \ --replace '\$'{prefix}/'$'{CMAKE_INSTALL_INCLUDEDIR} '$'{CMAKE_INSTALL_FULL_INCLUDEDIR} ''; meta = with lib; { homepage = "https://github.com/recp/cglm"; description = "Highly Optimized Graphics Math (glm) for C"; license = licenses.mit; maintainers = [ maintainers.ivar ]; platforms = platforms.unix; }; }