ogre 14.1.2 -> 14.2.1 https://repology.org/project/ogre/versions attrpath: ogre Checking auto update branch... No auto update branch exists Old version 14.1.2" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , cmake , pkg-config , unzip , SDL2 , boost , freetype , libpng , ois , pugixml , zziplib # linux , freeglut , libGL , libGLU , libICE , libSM , libX11 , libXaw , libXmu , libXrandr , libXrender , libXt , libXxf86vm , xorgproto # darwin , darwin # optional , withNvidiaCg ? false , nvidia_cg_toolkit , withSamples ? false }: let common = { version, hash, imguiVersion, imguiHash }: let imgui.src = fetchFromGitHub { owner = "ocornut"; repo = "imgui"; rev = "v${imguiVersion}"; hash = imguiHash; }; in stdenv.mkDerivation { pname = "ogre"; inherit version; src = fetchFromGitHub { owner = "OGRECave"; repo = "ogre"; rev = "v${version}"; inherit hash; }; postPatch = '' mkdir -p build cp -R ${imgui.src} build/imgui-${imguiVersion} chmod -R u+w build/imgui-${imguiVersion} ''; nativeBuildInputs = [ cmake pkg-config unzip ]; buildInputs = [ SDL2 boost freetype libpng ois pugixml zziplib ] ++ lib.optionals stdenv.isLinux [ freeglut libGL libGLU libICE libSM libX11 libXaw libXmu libXrandr libXrender libXt libXxf86vm xorgproto ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Cocoa ] ++ lib.optionals withNvidiaCg [ nvidia_cg_toolkit ]; cmakeFlags = [ (lib.cmakeBool "OGRE_BUILD_DEPENDENCIES" false) (lib.cmakeBool "OGRE_BUILD_SAMPLES" withSamples) ] ++ lib.optionals stdenv.isDarwin [ (lib.cmakeBool "OGRE_BUILD_LIBS_AS_FRAMEWORKS" false) ]; meta = { description = "3D Object-Oriented Graphics Rendering Engine"; homepage = "https://www.ogre3d.org/"; maintainers = with lib.maintainers; [ raskin wegank ]; platforms = lib.platforms.unix; license = lib.licenses.mit; }; }; in { ogre_14 = common { version = "14.2.2"; hash = "sha256-85hpujmlM3N81mkiA80xx2C4GsdzWkP61bwdfmw1zt8="; # https://github.com/OGRECave/ogre/blob/v14.2.2/Components/Overlay/CMakeLists.txt imguiVersion = "1.90.4"; imguiHash = "sha256-7+Ay7H97tIO6CUsEyaQv4i9q2FCw98eQUq/KYZyfTAw="; }; ogre_13 = common { version = "13.6.5"; hash = "sha256-8VQqePrvf/fleHijVIqWWfwOusGjVR40IIJ13o+HwaE="; # https://github.com/OGRECave/ogre/blob/v13.6.5/Components/Overlay/CMakeLists.txt imguiVersion = "1.87"; imguiHash = "sha256-H5rqXZFw+2PfVMsYvAK+K+pxxI8HnUC0GlPhooWgEYM="; }; }