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

63 lines
1.4 KiB
Nix
Raw Normal View History

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