3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/audio/ft2-clone/default.nix

41 lines
933 B
Nix
Raw Normal View History

2020-02-20 08:37:33 +00:00
{ stdenv
, fetchFromGitHub
, cmake
2020-07-29 18:40:38 +01:00
, nixosTests
2020-02-20 08:37:33 +00:00
, alsaLib
, SDL2
, libiconv
2020-02-20 08:37:33 +00:00
}:
stdenv.mkDerivation rec {
pname = "ft2-clone";
2020-11-21 22:10:54 +00:00
version = "1.41_fix";
2020-02-20 08:37:33 +00:00
src = fetchFromGitHub {
owner = "8bitbubsy";
repo = "ft2-clone";
rev = "v${version}";
2020-11-21 22:10:54 +00:00
sha256 = "0c7jli79ckachl5n2rbhc4yzml8nc36pl9yzxcwgaz544q8pzmaa";
2020-02-20 08:37:33 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ SDL2 ]
++ stdenv.lib.optional stdenv.isLinux alsaLib
++ stdenv.lib.optional stdenv.isDarwin libiconv;
2020-02-20 08:37:33 +00:00
2020-07-29 18:40:38 +01:00
passthru.tests = {
ft2-clone-starts = nixosTests.ft2-clone;
};
2020-02-20 08:37:33 +00:00
meta = with stdenv.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;
2020-02-20 08:37:33 +00:00
};
}