2022-12-24T18:49:55 spacenav-cube-example 0.2.3 -> 1.1 https://github.com/FreeSpacenav/libspnav/releases 2022-12-24T18:49:57 attrpath: spacenav-cube-example 2022-12-24T18:49:57 Checking auto update branch... 2022-12-24T18:49:57 No auto update branch exists 2022-12-24T18:49:58 Old version 0.2.3" not present in master derivation file with contents: { stdenv, lib, libspnav, libX11, mesa_glu }: stdenv.mkDerivation { pname = "spacenav-cube-example"; version = libspnav.version; src = libspnav.src; sourceRoot = "source/examples/cube"; buildInputs = [ libX11 mesa_glu libspnav ]; makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ]; installPhase = '' runHook preInstall mkdir -p $out/bin cp cube $out/bin/spacenav-cube-example runHook postInstall ''; meta = with lib; { homepage = "http://spacenav.sourceforge.net/"; description = "An example application to test the spacenavd driver"; license = licenses.bsd3; platforms = platforms.unix; maintainers = with maintainers; [ sohalt ]; }; }