nixpkgs/pkgs/applications/audio/ft2-clone/default.nix

63 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, stdenv
2020-02-20 08:37:33 +00:00
, fetchFromGitHub
, cmake
2020-07-29 17:40:38 +00:00
, nixosTests
, alsa-lib
2020-02-20 08:37:33 +00:00
, SDL2
, libiconv
2021-01-02 17:39:18 +00:00
, CoreAudio
, CoreMIDI
, CoreServices
, Cocoa
2020-02-20 08:37:33 +00:00
}:
stdenv.mkDerivation rec {
pname = "ft2-clone";
2021-05-23 22:30:36 +00:00
version = "1.47";
2020-02-20 08:37:33 +00:00
src = fetchFromGitHub {
owner = "8bitbubsy";
repo = "ft2-clone";
rev = "v${version}";
2021-05-23 22:30:36 +00:00
sha256 = "sha256-KLHJROOtRPtGHBYEMByY7LG6FY4vES6WndCiz7okan8=";
2020-02-20 08:37:33 +00:00
};
2021-01-02 17:39:18 +00:00
# Adapt the linux-only CMakeLists to darwin (more reliable than make-macos.sh)
2021-01-15 13:21:58 +00:00
postPatch = lib.optionalString stdenv.isDarwin ''
2021-01-02 17:39:18 +00:00
sed -i -e 's@__LINUX_ALSA__@__MACOSX_CORE__@' -e 's@asound@@' CMakeLists.txt
'';
2020-02-20 08:37:33 +00:00
nativeBuildInputs = [ cmake ];
buildInputs = [ SDL2 ]
++ lib.optional stdenv.isLinux alsa-lib
2021-01-15 13:21:58 +00:00
++ lib.optionals stdenv.isDarwin [
2021-01-02 17:39:18 +00:00
libiconv
CoreAudio
CoreMIDI
CoreServices
Cocoa
];
2021-01-15 13:21:58 +00:00
NIX_LDFLAGS = lib.optionalString stdenv.isDarwin [
2021-01-02 17:39:18 +00:00
"-framework CoreAudio"
"-framework CoreMIDI"
"-framework CoreServices"
"-framework Cocoa"
];
2020-02-20 08:37:33 +00:00
2020-07-29 17:40:38 +00:00
passthru.tests = {
ft2-clone-starts = nixosTests.ft2-clone;
};
2020-02-20 08:37:33 +00:00
meta = with lib; {
2020-02-20 08:37:33 +00:00
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;
2020-02-20 08:37:33 +00:00
};
}