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
2020-02-20 08:37:33 +00:00
, alsaLib
, 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-01-01 21:08:07 +00:00
version = "1.42";
2020-02-20 08:37:33 +00:00
src = fetchFromGitHub {
owner = "8bitbubsy";
repo = "ft2-clone";
rev = "v${version}";
2021-01-01 21:08:07 +00:00
sha256 = "0w3c1rgm8qlqi50gavrcjz40xb0nkis4i9mvpwmvzmdv9nipxry9";
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)
postPatch = stdenv.lib.optionalString stdenv.isDarwin ''
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 ]
++ stdenv.lib.optional stdenv.isLinux alsaLib
2021-01-02 17:39:18 +00:00
++ stdenv.lib.optionals stdenv.isDarwin [
libiconv
CoreAudio
CoreMIDI
CoreServices
Cocoa
];
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin [
"-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
};
}