2022-12-03T05:29:40 ft2-clone 1.61 -> 1.62 https://github.com/8bitbubsy/ft2-clone/releases 2022-12-03T05:29:42 attrpath: ft2-clone 2022-12-03T05:29:42 Checking auto update branch... 2022-12-03T05:29:42 No auto update branch exists 2022-12-03T05:29:43 Old version 1.61" not present in master derivation file with contents: { lib, stdenv , fetchFromGitHub , cmake , nixosTests , alsa-lib , SDL2 , libiconv , CoreAudio , CoreMIDI , CoreServices , Cocoa }: stdenv.mkDerivation rec { pname = "ft2-clone"; version = "1.62"; src = fetchFromGitHub { owner = "8bitbubsy"; repo = "ft2-clone"; rev = "v${version}"; sha256 = "sha256-PHDkCE30sVAFXHjG8d/4ETSDS2KO/j43iMMW0PhCFgI="; }; # Adapt the linux-only CMakeLists to darwin (more reliable than make-macos.sh) postPatch = lib.optionalString stdenv.isDarwin '' sed -i -e 's@__LINUX_ALSA__@__MACOSX_CORE__@' -e 's@asound@@' CMakeLists.txt ''; nativeBuildInputs = [ cmake ]; buildInputs = [ SDL2 ] ++ lib.optional stdenv.isLinux alsa-lib ++ lib.optionals stdenv.isDarwin [ libiconv CoreAudio CoreMIDI CoreServices Cocoa ]; NIX_LDFLAGS = lib.optionalString stdenv.isDarwin [ "-framework CoreAudio" "-framework CoreMIDI" "-framework CoreServices" "-framework Cocoa" ]; passthru.tests = { ft2-clone-starts = nixosTests.ft2-clone; }; meta = with lib; { description = "A highly accurate clone of the classic Fasttracker II software for MS-DOS"; homepage = "https://16-bits.org/ft2.php"; license = licenses.bsd3; maintainers = with maintainers; [ fgaz ]; # From HOW-TO-COMPILE.txt: # > This code is NOT big-endian compatible platforms = platforms.littleEndian; }; } 2022-12-03T13:32:41 ft2-clone 1.61 -> 1.62 https://repology.org/metapackage/ft2-clone/versions 2022-12-03T13:32:43 attrpath: ft2-clone 2022-12-03T13:32:43 Checking auto update branch... 2022-12-03T13:32:43 No auto update branch exists 2022-12-03T13:32:44 Old version 1.61" not present in master derivation file with contents: { lib, stdenv , fetchFromGitHub , cmake , nixosTests , alsa-lib , SDL2 , libiconv , CoreAudio , CoreMIDI , CoreServices , Cocoa }: stdenv.mkDerivation rec { pname = "ft2-clone"; version = "1.62"; src = fetchFromGitHub { owner = "8bitbubsy"; repo = "ft2-clone"; rev = "v${version}"; sha256 = "sha256-PHDkCE30sVAFXHjG8d/4ETSDS2KO/j43iMMW0PhCFgI="; }; # Adapt the linux-only CMakeLists to darwin (more reliable than make-macos.sh) postPatch = lib.optionalString stdenv.isDarwin '' sed -i -e 's@__LINUX_ALSA__@__MACOSX_CORE__@' -e 's@asound@@' CMakeLists.txt ''; nativeBuildInputs = [ cmake ]; buildInputs = [ SDL2 ] ++ lib.optional stdenv.isLinux alsa-lib ++ lib.optionals stdenv.isDarwin [ libiconv CoreAudio CoreMIDI CoreServices Cocoa ]; NIX_LDFLAGS = lib.optionalString stdenv.isDarwin [ "-framework CoreAudio" "-framework CoreMIDI" "-framework CoreServices" "-framework Cocoa" ]; passthru.tests = { ft2-clone-starts = nixosTests.ft2-clone; }; meta = with lib; { description = "A highly accurate clone of the classic Fasttracker II software for MS-DOS"; homepage = "https://16-bits.org/ft2.php"; license = licenses.bsd3; maintainers = with maintainers; [ fgaz ]; # From HOW-TO-COMPILE.txt: # > This code is NOT big-endian compatible platforms = platforms.littleEndian; }; }