4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
63 lines
1.4 KiB
Nix
63 lines
1.4 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, nixosTests
|
|
, alsaLib
|
|
, SDL2
|
|
, libiconv
|
|
, CoreAudio
|
|
, CoreMIDI
|
|
, CoreServices
|
|
, Cocoa
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ft2-clone";
|
|
version = "1.42";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "8bitbubsy";
|
|
repo = "ft2-clone";
|
|
rev = "v${version}";
|
|
sha256 = "0w3c1rgm8qlqi50gavrcjz40xb0nkis4i9mvpwmvzmdv9nipxry9";
|
|
};
|
|
|
|
# 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
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ SDL2 ]
|
|
++ stdenv.lib.optional stdenv.isLinux alsaLib
|
|
++ 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"
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|
|
|