2022-12-10T17:23:07 ois 1.5 -> 1.5.1 https://github.com/wgois/OIS/releases 2022-12-10T17:23:09 attrpath: ois 2022-12-10T17:23:10 Checking auto update branch... 2022-12-10T17:23:10 No auto update branch exists 2022-12-10T17:23:10 Old version 1.5" not present in master derivation file with contents: { stdenv, lib, fetchFromGitHub, cmake, libX11, Cocoa, IOKit, Kernel }: stdenv.mkDerivation rec { pname = "ois"; version = "1.5.1"; src = fetchFromGitHub { owner = "wgois"; repo = "OIS"; rev = "v${version}"; sha256 = "sha256-ir6p+Tzf8L5VOW/rsG4yelsth7INbhABO2T7pfMHcFo="; }; nativeBuildInputs = [ cmake ]; buildInputs = lib.optionals stdenv.isLinux [ libX11 ] ++ lib.optionals stdenv.isDarwin [ Cocoa IOKit Kernel ]; cmakeFlags = [ "-DCMAKE_INSTALL_LIBDIR=lib" ]; meta = with lib; { description = "Object-oriented C++ input system"; maintainers = [ maintainers.raskin ]; platforms = platforms.unix; license = licenses.zlib; }; }